forked from zanfranceschi/rinha-de-backend-2024-q1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1230 lines (1160 loc) · 98.6 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-27 03:17:28 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 9s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - julioriffel-django">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - julioriffel-django</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">29437</td>
<td class="value error-col-3 total ko">76.37 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 422<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">3657</td>
<td class="value error-col-3 total ko">9.488 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">3370</td>
<td class="value error-col-3 total ko">8.743 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">1675</td>
<td class="value error-col-3 total ko">4.346 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 500<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">249</td>
<td class="value error-col-3 total ko">0.646 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">151</td>
<td class="value error-col-3 total ko">0.392 %</td>
</tr>
<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">6</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.013 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 504<span class="value" style="display:none">7</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.003 %</td>
</tr>
</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: [
[1709003849000,0],[1709003850000,0],[1709003851000,0],[1709003852000,0],[1709003853000,1],[1709003854000,1],[1709003855000,2],[1709003856000,5],[1709003857000,4],[1709003858000,5],[1709003859000,6],[1709003860000,7],[1709003861000,8],[1709003862000,8],[1709003863000,10],[1709003864000,10],[1709003865000,13],[1709003866000,12],[1709003867000,14],[1709003868000,14],[1709003869000,15],[1709003870000,16],[1709003871000,17],[1709003872000,17],[1709003873000,19],[1709003874000,20],[1709003875000,20],[1709003876000,22],[1709003877000,22],[1709003878000,23],[1709003879000,25],[1709003880000,25],[1709003881000,26],[1709003882000,26],[1709003883000,28],[1709003884000,30],[1709003885000,30],[1709003886000,30],[1709003887000,32],[1709003888000,33],[1709003889000,34],[1709003890000,34],[1709003891000,37],[1709003892000,36],[1709003893000,37],[1709003894000,38],[1709003895000,39],[1709003896000,40],[1709003897000,43],[1709003898000,42],[1709003899000,45],[1709003900000,45],[1709003901000,46],[1709003902000,46],[1709003903000,48],[1709003904000,49],[1709003905000,49],[1709003906000,49],[1709003907000,51],[1709003908000,52],[1709003909000,55],[1709003910000,53],[1709003911000,53],[1709003912000,55],[1709003913000,56],[1709003914000,55],[1709003915000,57],[1709003916000,59],[1709003917000,59],[1709003918000,59],[1709003919000,61],[1709003920000,61],[1709003921000,63],[1709003922000,63],[1709003923000,64],[1709003924000,65],[1709003925000,66],[1709003926000,67],[1709003927000,68],[1709003928000,68],[1709003929000,70],[1709003930000,70],[1709003931000,72],[1709003932000,72],[1709003933000,73],[1709003934000,75],[1709003935000,75],[1709003936000,76],[1709003937000,77],[1709003938000,78],[1709003939000,79],[1709003940000,80],[1709003941000,81],[1709003942000,82],[1709003943000,82],[1709003944000,85],[1709003945000,87],[1709003946000,87],[1709003947000,88],[1709003948000,96],[1709003949000,108],[1709003950000,130],[1709003951000,120],[1709003952000,133],[1709003953000,131],[1709003954000,144],[1709003955000,199],[1709003956000,257],[1709003957000,256],[1709003958000,252],[1709003959000,252],[1709003960000,255],[1709003961000,252],[1709003962000,250],[1709003963000,188],[1709003964000,262],[1709003965000,264],[1709003966000,264],[1709003967000,265],[1709003968000,215],[1709003969000,243],[1709003970000,268],[1709003971000,268],[1709003972000,270],[1709003973000,269],[1709003974000,257],[1709003975000,271],[1709003976000,271],[1709003977000,271],[1709003978000,276],[1709003979000,266],[1709003980000,275],[1709003981000,275],[1709003982000,275],[1709003983000,271],[1709003984000,265],[1709003985000,266],[1709003986000,266],[1709003987000,266],[1709003988000,267],[1709003989000,257],[1709003990000,264],[1709003991000,264],[1709003992000,264],[1709003993000,260],[1709003994000,255],[1709003995000,245],[1709003996000,245],[1709003997000,245],[1709003998000,246],[1709003999000,242],[1709004000000,239],[1709004001000,239],[1709004002000,239],[1709004003000,239],[1709004004000,237],[1709004005000,252],[1709004006000,252],[1709004007000,252],[1709004008000,254],[1709004009000,280],[1709004010000,269],[1709004011000,269],[1709004012000,269],[1709004013000,266],[1709004014000,264],[1709004015000,265],[1709004016000,265],[1709004017000,265],[1709004018000,263],[1709004019000,242],[1709004020000,243],[1709004021000,243],[1709004022000,243],[1709004023000,235],[1709004024000,170],[1709004025000,110],[1709004026000,110],[1709004027000,110],[1709004028000,110],[1709004029000,110],[1709004030000,110],[1709004031000,110],[1709004032000,110],[1709004033000,111],[1709004034000,111],[1709004035000,111],[1709004036000,111],[1709004037000,111],[1709004038000,167],[1709004039000,270],[1709004040000,270],[1709004041000,270],[1709004042000,270],[1709004043000,263],[1709004044000,262],[1709004045000,271],[1709004046000,271],[1709004047000,271],[1709004048000,264],[1709004049000,246],[1709004050000,258],[1709004051000,258],[1709004052000,258],[1709004053000,249],[1709004054000,254],[1709004055000,252],[1709004056000,252],[1709004057000,252],[1709004058000,252],[1709004059000,266],[1709004060000,266],[1709004061000,266],[1709004062000,266],[1709004063000,271],[1709004064000,245],[1709004065000,237],[1709004066000,237],[1709004067000,237],[1709004068000,231],[1709004069000,240],[1709004070000,242],[1709004071000,242],[1709004072000,242],[1709004073000,240],[1709004074000,233],[1709004075000,249],[1709004076000,249],[1709004077000,249],[1709004078000,248],[1709004079000,234],[1709004080000,229],[1709004081000,229],[1709004082000,229],[1709004083000,248],[1709004084000,241],[1709004085000,238],[1709004086000,238],[1709004087000,238],[1709004088000,224],[1709004089000,264],[1709004090000,279],[1709004091000,279],[1709004092000,279],[1709004093000,272],[1709004094000,129],[1709004095000,79],[1709004096000,79],[1709004097000,79],[1709004098000,58]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1709003849000,0],[1709003850000,0],[1709003851000,0],[1709003852000,0],[1709003853000,1],[1709003854000,1],[1709003855000,4],[1709003856000,6],[1709003857000,7],[1709003858000,9],[1709003859000,11],[1709003860000,13],[1709003861000,15],[1709003862000,16],[1709003863000,19],[1709003864000,20],[1709003865000,22],[1709003866000,24],[1709003867000,25],[1709003868000,28],[1709003869000,29],[1709003870000,31],[1709003871000,33],[1709003872000,36],[1709003873000,37],[1709003874000,38],[1709003875000,40],[1709003876000,43],[1709003877000,46],[1709003878000,48],[1709003879000,49],[1709003880000,52],[1709003881000,51],[1709003882000,53],[1709003883000,55],[1709003884000,56],[1709003885000,59],[1709003886000,60],[1709003887000,63],[1709003888000,64],[1709003889000,66],[1709003890000,68],[1709003891000,69],[1709003892000,71],[1709003893000,74],[1709003894000,74],[1709003895000,77],[1709003896000,79],[1709003897000,84],[1709003898000,82],[1709003899000,85],[1709003900000,87],[1709003901000,89],[1709003902000,90],[1709003903000,93],[1709003904000,95],[1709003905000,96],[1709003906000,97],[1709003907000,99],[1709003908000,102],[1709003909000,103],[1709003910000,105],[1709003911000,106],[1709003912000,108],[1709003913000,110],[1709003914000,111],[1709003915000,113],[1709003916000,115],[1709003917000,117],[1709003918000,119],[1709003919000,120],[1709003920000,123],[1709003921000,125],[1709003922000,127],[1709003923000,129],[1709003924000,131],[1709003925000,133],[1709003926000,134],[1709003927000,136],[1709003928000,138],[1709003929000,140],[1709003930000,142],[1709003931000,143],[1709003932000,145],[1709003933000,148],[1709003934000,149],[1709003935000,150],[1709003936000,153],[1709003937000,153],[1709003938000,156],[1709003939000,158],[1709003940000,160],[1709003941000,161],[1709003942000,162],[1709003943000,167],[1709003944000,167],[1709003945000,169],[1709003946000,172],[1709003947000,173],[1709003948000,188],[1709003949000,204],[1709003950000,233],[1709003951000,229],[1709003952000,241],[1709003953000,239],[1709003954000,273],[1709003955000,399],[1709003956000,508],[1709003957000,512],[1709003958000,520],[1709003959000,524],[1709003960000,523],[1709003961000,531],[1709003962000,533],[1709003963000,378],[1709003964000,526],[1709003965000,529],[1709003966000,530],[1709003967000,533],[1709003968000,427],[1709003969000,484],[1709003970000,539],[1709003971000,539],[1709003972000,542],[1709003973000,546],[1709003974000,519],[1709003975000,545],[1709003976000,545],[1709003977000,545],[1709003978000,540],[1709003979000,526],[1709003980000,543],[1709003981000,543],[1709003982000,543],[1709003983000,547],[1709003984000,537],[1709003985000,552],[1709003986000,552],[1709003987000,552],[1709003988000,551],[1709003989000,561],[1709003990000,554],[1709003991000,554],[1709003992000,554],[1709003993000,558],[1709003994000,565],[1709003995000,579],[1709003996000,579],[1709003997000,579],[1709003998000,578],[1709003999000,578],[1709004000000,586],[1709004001000,586],[1709004002000,586],[1709004003000,585],[1709004004000,582],[1709004005000,572],[1709004006000,572],[1709004007000,572],[1709004008000,568],[1709004009000,538],[1709004010000,550],[1709004011000,550],[1709004012000,550],[1709004013000,553],[1709004014000,554],[1709004015000,555],[1709004016000,555],[1709004017000,555],[1709004018000,558],[1709004019000,583],[1709004020000,581],[1709004021000,581],[1709004022000,581],[1709004023000,550],[1709004024000,377],[1709004025000,222],[1709004026000,222],[1709004027000,222],[1709004028000,220],[1709004029000,220],[1709004030000,220],[1709004031000,220],[1709004032000,220],[1709004033000,220],[1709004034000,220],[1709004035000,220],[1709004036000,220],[1709004037000,220],[1709004038000,334],[1709004039000,544],[1709004040000,544],[1709004041000,544],[1709004042000,544],[1709004043000,534],[1709004044000,530],[1709004045000,549],[1709004046000,549],[1709004047000,549],[1709004048000,544],[1709004049000,538],[1709004050000,558],[1709004051000,558],[1709004052000,558],[1709004053000,561],[1709004054000,559],[1709004055000,561],[1709004056000,561],[1709004057000,561],[1709004058000,562],[1709004059000,549],[1709004060000,554],[1709004061000,554],[1709004062000,554],[1709004063000,547],[1709004064000,570],[1709004065000,578],[1709004066000,578],[1709004067000,578],[1709004068000,580],[1709004069000,576],[1709004070000,577],[1709004071000,577],[1709004072000,577],[1709004073000,580],[1709004074000,575],[1709004075000,572],[1709004076000,572],[1709004077000,572],[1709004078000,571],[1709004079000,560],[1709004080000,590],[1709004081000,591],[1709004082000,590],[1709004083000,572],[1709004084000,579],[1709004085000,585],[1709004086000,585],[1709004087000,585],[1709004088000,599],[1709004089000,559],[1709004090000,547],[1709004091000,547],[1709004092000,547],[1709004093000,542],[1709004094000,349],[1709004095000,245],[1709004096000,245],[1709004097000,245],[1709004098000,170]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1709003849000,0],[1709003850000,0],[1709003851000,0],[1709003852000,0],[1709003853000,1],[1709003854000,1],[1709003855000,1],[1709003856000,1],[1709003857000,1],[1709003858000,1],[1709003859000,2],[1709003860000,1],[1709003861000,2],[1709003862000,2],[1709003863000,2],[1709003864000,3],[1709003865000,3],[1709003866000,3],[1709003867000,3],[1709003868000,2],[1709003869000,2],[1709003870000,2],[1709003871000,3],[1709003872000,2],[1709003873000,3],[1709003874000,2],[1709003875000,3],[1709003876000,2],[1709003877000,3],[1709003878000,3],[1709003879000,3],[1709003880000,3],[1709003881000,4],[1709003882000,3],[1709003883000,4],[1709003884000,4],[1709003885000,4],[1709003886000,3],[1709003887000,4],[1709003888000,3],[1709003889000,4],[1709003890000,4],[1709003891000,4],[1709003892000,4],[1709003893000,4],[1709003894000,4],[1709003895000,5],[1709003896000,4],[1709003897000,5],[1709003898000,4],[1709003899000,5],[1709003900000,4],[1709003901000,6],[1709003902000,6],[1709003903000,4],[1709003904000,5],[1709003905000,5],[1709003906000,5],[1709003907000,5],[1709003908000,5],[1709003909000,5],[1709003910000,6],[1709003911000,6],[1709003912000,5],[1709003913000,6],[1709003914000,5],[1709003915000,6],[1709003916000,5],[1709003917000,6],[1709003918000,6],[1709003919000,6],[1709003920000,7],[1709003921000,6],[1709003922000,6],[1709003923000,7],[1709003924000,7],[1709003925000,6],[1709003926000,6],[1709003927000,7],[1709003928000,6],[1709003929000,7],[1709003930000,7],[1709003931000,7],[1709003932000,7],[1709003933000,7],[1709003934000,7],[1709003935000,7],[1709003936000,8],[1709003937000,7],[1709003938000,8],[1709003939000,8],[1709003940000,7],[1709003941000,9],[1709003942000,8],[1709003943000,7],[1709003944000,8],[1709003945000,8],[1709003946000,8],[1709003947000,8],[1709003948000,10],[1709003949000,11],[1709003950000,14],[1709003951000,14],[1709003952000,13],[1709003953000,13],[1709003954000,13],[1709003955000,19],[1709003956000,24],[1709003957000,25],[1709003958000,24],[1709003959000,22],[1709003960000,22],[1709003961000,21],[1709003962000,22],[1709003963000,17],[1709003964000,24],[1709003965000,23],[1709003966000,23],[1709003967000,24],[1709003968000,19],[1709003969000,22],[1709003970000,24],[1709003971000,24],[1709003972000,24],[1709003973000,24],[1709003974000,23],[1709003975000,23],[1709003976000,23],[1709003977000,23],[1709003978000,23],[1709003979000,20],[1709003980000,21],[1709003981000,21],[1709003982000,21],[1709003983000,21],[1709003984000,22],[1709003985000,21],[1709003986000,21],[1709003987000,21],[1709003988000,20],[1709003989000,21],[1709003990000,21],[1709003991000,21],[1709003992000,21],[1709003993000,21],[1709003994000,18],[1709003995000,15],[1709003996000,15],[1709003997000,15],[1709003998000,15],[1709003999000,14],[1709004000000,14],[1709004001000,14],[1709004002000,14],[1709004003000,14],[1709004004000,17],[1709004005000,15],[1709004006000,15],[1709004007000,15],[1709004008000,16],[1709004009000,20],[1709004010000,20],[1709004011000,20],[1709004012000,20],[1709004013000,20],[1709004014000,19],[1709004015000,19],[1709004016000,19],[1709004017000,19],[1709004018000,18],[1709004019000,14],[1709004020000,15],[1709004021000,15],[1709004022000,15],[1709004023000,15],[1709004024000,14],[1709004025000,10],[1709004026000,10],[1709004027000,10],[1709004028000,10],[1709004029000,10],[1709004030000,10],[1709004031000,10],[1709004032000,10],[1709004033000,11],[1709004034000,11],[1709004035000,11],[1709004036000,11],[1709004037000,11],[1709004038000,15],[1709004039000,25],[1709004040000,25],[1709004041000,25],[1709004042000,25],[1709004043000,21],[1709004044000,19],[1709004045000,19],[1709004046000,19],[1709004047000,19],[1709004048000,21],[1709004049000,22],[1709004050000,23],[1709004051000,23],[1709004052000,23],[1709004053000,24],[1709004054000,25],[1709004055000,26],[1709004056000,26],[1709004057000,26],[1709004058000,24],[1709004059000,22],[1709004060000,19],[1709004061000,19],[1709004062000,19],[1709004063000,19],[1709004064000,23],[1709004065000,24],[1709004066000,24],[1709004067000,24],[1709004068000,26],[1709004069000,20],[1709004070000,20],[1709004071000,20],[1709004072000,20],[1709004073000,18],[1709004074000,19],[1709004075000,18],[1709004076000,18],[1709004077000,18],[1709004078000,20],[1709004079000,20],[1709004080000,20],[1709004081000,20],[1709004082000,20],[1709004083000,18],[1709004084000,18],[1709004085000,16],[1709004086000,16],[1709004087000,16],[1709004088000,15],[1709004089000,14],[1709004090000,13],[1709004091000,13],[1709004092000,13],[1709004093000,13],[1709004094000,6],[1709004095000,6],[1709004096000,6],[1709004097000,6],[1709004098000,5]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1709003849000,0],[1709003850000,0],[1709003851000,0],[1709003852000,5],[1709003853000,5],[1709003854000,0],[1709003855000,0],[1709003856000,0],[1709003857000,0],[1709003858000,0],[1709003859000,0],[1709003860000,0],[1709003861000,0],[1709003862000,0],[1709003863000,0],[1709003864000,0],[1709003865000,0],[1709003866000,0],[1709003867000,0],[1709003868000,0],[1709003869000,0],[1709003870000,0],[1709003871000,0],[1709003872000,0],[1709003873000,0],[1709003874000,0],[1709003875000,0],[1709003876000,0],[1709003877000,0],[1709003878000,0],[1709003879000,0],[1709003880000,0],[1709003881000,0],[1709003882000,0],[1709003883000,0],[1709003884000,0],[1709003885000,0],[1709003886000,0],[1709003887000,0],[1709003888000,0],[1709003889000,0],[1709003890000,0],[1709003891000,0],[1709003892000,0],[1709003893000,0],[1709003894000,0],[1709003895000,0],[1709003896000,0],[1709003897000,0],[1709003898000,0],[1709003899000,0],[1709003900000,0],[1709003901000,0],[1709003902000,0],[1709003903000,0],[1709003904000,0],[1709003905000,0],[1709003906000,0],[1709003907000,0],[1709003908000,0],[1709003909000,0],[1709003910000,0],[1709003911000,0],[1709003912000,0],[1709003913000,0],[1709003914000,0],[1709003915000,0],[1709003916000,0],[1709003917000,0],[1709003918000,0],[1709003919000,0],[1709003920000,0],[1709003921000,0],[1709003922000,0],[1709003923000,0],[1709003924000,0],[1709003925000,0],[1709003926000,0],[1709003927000,0],[1709003928000,0],[1709003929000,0],[1709003930000,0],[1709003931000,0],[1709003932000,0],[1709003933000,0],[1709003934000,0],[1709003935000,0],[1709003936000,0],[1709003937000,0],[1709003938000,0],[1709003939000,0],[1709003940000,0],[1709003941000,0],[1709003942000,0],[1709003943000,0],[1709003944000,0],[1709003945000,0],[1709003946000,0],[1709003947000,0],[1709003948000,0],[1709003949000,0],[1709003950000,0],[1709003951000,0],[1709003952000,0],[1709003953000,0],[1709003954000,0],[1709003955000,0],[1709003956000,0],[1709003957000,0],[1709003958000,0],[1709003959000,0],[1709003960000,0],[1709003961000,0],[1709003962000,0],[1709003963000,0],[1709003964000,0],[1709003965000,0],[1709003966000,0],[1709003967000,0],[1709003968000,0],[1709003969000,0],[1709003970000,0],[1709003971000,0],[1709003972000,0],[1709003973000,0],[1709003974000,0],[1709003975000,0],[1709003976000,0],[1709003977000,0],[1709003978000,0],[1709003979000,0],[1709003980000,0],[1709003981000,0],[1709003982000,0],[1709003983000,0],[1709003984000,0],[1709003985000,0],[1709003986000,0],[1709003987000,0],[1709003988000,0],[1709003989000,0],[1709003990000,0],[1709003991000,0],[1709003992000,0],[1709003993000,0],[1709003994000,0],[1709003995000,0],[1709003996000,0],[1709003997000,0],[1709003998000,0],[1709003999000,0],[1709004000000,0],[1709004001000,0],[1709004002000,0],[1709004003000,0],[1709004004000,0],[1709004005000,0],[1709004006000,0],[1709004007000,0],[1709004008000,0],[1709004009000,0],[1709004010000,0],[1709004011000,0],[1709004012000,0],[1709004013000,0],[1709004014000,0],[1709004015000,0],[1709004016000,0],[1709004017000,0],[1709004018000,0],[1709004019000,0],[1709004020000,0],[1709004021000,0],[1709004022000,0],[1709004023000,0],[1709004024000,0],[1709004025000,0],[1709004026000,0],[1709004027000,0],[1709004028000,0],[1709004029000,0],[1709004030000,0],[1709004031000,0],[1709004032000,0],[1709004033000,0],[1709004034000,0],[1709004035000,0],[1709004036000,0],[1709004037000,0],[1709004038000,0],[1709004039000,0],[1709004040000,0],[1709004041000,0],[1709004042000,0],[1709004043000,0],[1709004044000,0],[1709004045000,0],[1709004046000,0],[1709004047000,0],[1709004048000,0],[1709004049000,0],[1709004050000,0],[1709004051000,0],[1709004052000,0],[1709004053000,0],[1709004054000,0],[1709004055000,0],[1709004056000,0],[1709004057000,0],[1709004058000,0],[1709004059000,0],[1709004060000,0],[1709004061000,0],[1709004062000,0],[1709004063000,0],[1709004064000,0],[1709004065000,0],[1709004066000,0],[1709004067000,0],[1709004068000,0],[1709004069000,0],[1709004070000,0],[1709004071000,0],[1709004072000,0],[1709004073000,0],[1709004074000,0],[1709004075000,0],[1709004076000,0],[1709004077000,0],[1709004078000,0],[1709004079000,0],[1709004080000,0],[1709004081000,0],[1709004082000,0],[1709004083000,0],[1709004084000,0],[1709004085000,0],[1709004086000,0],[1709004087000,0],[1709004088000,0],[1709004089000,0],[1709004090000,0],[1709004091000,0],[1709004092000,0],[1709004093000,0],[1709004094000,0],[1709004095000,0],[1709004096000,0],[1709004097000,0],[1709004098000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1709003849000,0],[1709003850000,0],[1709003851000,0],[1709003852000,1],[1709003853000,1],[1709003854000,0],[1709003855000,0],[1709003856000,0],[1709003857000,0],[1709003858000,0],[1709003859000,0],[1709003860000,0],[1709003861000,0],[1709003862000,0],[1709003863000,0],[1709003864000,0],[1709003865000,0],[1709003866000,0],[1709003867000,0],[1709003868000,0],[1709003869000,0],[1709003870000,0],[1709003871000,0],[1709003872000,0],[1709003873000,0],[1709003874000,0],[1709003875000,0],[1709003876000,0],[1709003877000,0],[1709003878000,0],[1709003879000,0],[1709003880000,0],[1709003881000,0],[1709003882000,0],[1709003883000,0],[1709003884000,0],[1709003885000,0],[1709003886000,0],[1709003887000,0],[1709003888000,0],[1709003889000,0],[1709003890000,0],[1709003891000,0],[1709003892000,0],[1709003893000,0],[1709003894000,0],[1709003895000,0],[1709003896000,0],[1709003897000,0],[1709003898000,0],[1709003899000,0],[1709003900000,0],[1709003901000,0],[1709003902000,0],[1709003903000,0],[1709003904000,0],[1709003905000,0],[1709003906000,0],[1709003907000,0],[1709003908000,0],[1709003909000,0],[1709003910000,0],[1709003911000,0],[1709003912000,0],[1709003913000,0],[1709003914000,0],[1709003915000,0],[1709003916000,0],[1709003917000,0],[1709003918000,0],[1709003919000,0],[1709003920000,0],[1709003921000,0],[1709003922000,0],[1709003923000,0],[1709003924000,0],[1709003925000,0],[1709003926000,0],[1709003927000,0],[1709003928000,0],[1709003929000,0],[1709003930000,0],[1709003931000,0],[1709003932000,0],[1709003933000,0],[1709003934000,0],[1709003935000,0],[1709003936000,0],[1709003937000,0],[1709003938000,0],[1709003939000,0],[1709003940000,0],[1709003941000,0],[1709003942000,0],[1709003943000,0],[1709003944000,0],[1709003945000,0],[1709003946000,0],[1709003947000,0],[1709003948000,0],[1709003949000,0],[1709003950000,0],[1709003951000,0],[1709003952000,0],[1709003953000,0],[1709003954000,0],[1709003955000,0],[1709003956000,0],[1709003957000,0],[1709003958000,0],[1709003959000,0],[1709003960000,0],[1709003961000,0],[1709003962000,0],[1709003963000,0],[1709003964000,0],[1709003965000,0],[1709003966000,0],[1709003967000,0],[1709003968000,0],[1709003969000,0],[1709003970000,0],[1709003971000,0],[1709003972000,0],[1709003973000,0],[1709003974000,0],[1709003975000,0],[1709003976000,0],[1709003977000,0],[1709003978000,0],[1709003979000,0],[1709003980000,0],[1709003981000,0],[1709003982000,0],[1709003983000,0],[1709003984000,0],[1709003985000,0],[1709003986000,0],[1709003987000,0],[1709003988000,0],[1709003989000,0],[1709003990000,0],[1709003991000,0],[1709003992000,0],[1709003993000,0],[1709003994000,0],[1709003995000,0],[1709003996000,0],[1709003997000,0],[1709003998000,0],[1709003999000,0],[1709004000000,0],[1709004001000,0],[1709004002000,0],[1709004003000,0],[1709004004000,0],[1709004005000,0],[1709004006000,0],[1709004007000,0],[1709004008000,0],[1709004009000,0],[1709004010000,0],[1709004011000,0],[1709004012000,0],[1709004013000,0],[1709004014000,0],[1709004015000,0],[1709004016000,0],[1709004017000,0],[1709004018000,0],[1709004019000,0],[1709004020000,0],[1709004021000,0],[1709004022000,0],[1709004023000,0],[1709004024000,0],[1709004025000,0],[1709004026000,0],[1709004027000,0],[1709004028000,0],[1709004029000,0],[1709004030000,0],[1709004031000,0],[1709004032000,0],[1709004033000,0],[1709004034000,0],[1709004035000,0],[1709004036000,0],[1709004037000,0],[1709004038000,0],[1709004039000,0],[1709004040000,0],[1709004041000,0],[1709004042000,0],[1709004043000,0],[1709004044000,0],[1709004045000,0],[1709004046000,0],[1709004047000,0],[1709004048000,0],[1709004049000,0],[1709004050000,0],[1709004051000,0],[1709004052000,0],[1709004053000,0],[1709004054000,0],[1709004055000,0],[1709004056000,0],[1709004057000,0],[1709004058000,0],[1709004059000,0],[1709004060000,0],[1709004061000,0],[1709004062000,0],[1709004063000,0],[1709004064000,0],[1709004065000,0],[1709004066000,0],[1709004067000,0],[1709004068000,0],[1709004069000,0],[1709004070000,0],[1709004071000,0],[1709004072000,0],[1709004073000,0],[1709004074000,0],[1709004075000,0],[1709004076000,0],[1709004077000,0],[1709004078000,0],[1709004079000,0],[1709004080000,0],[1709004081000,0],[1709004082000,0],[1709004083000,0],[1709004084000,0],[1709004085000,0],[1709004086000,0],[1709004087000,0],[1709004088000,0],[1709004089000,0],[1709004090000,0],[1709004091000,0],[1709004092000,0],[1709004093000,0],[1709004094000,0],[1709004095000,0],[1709004096000,0],[1709004097000,0],[1709004098000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1709003849000,0],[1709003850000,0],[1709003851000,1],[1709003852000,0],[1709003853000,0],[1709003854000,0],[1709003855000,0],[1709003856000,0],[1709003857000,0],[1709003858000,0],[1709003859000,0],[1709003860000,0],[1709003861000,0],[1709003862000,0],[1709003863000,0],[1709003864000,0],[1709003865000,0],[1709003866000,0],[1709003867000,0],[1709003868000,0],[1709003869000,0],[1709003870000,0],[1709003871000,0],[1709003872000,0],[1709003873000,0],[1709003874000,0],[1709003875000,0],[1709003876000,0],[1709003877000,0],[1709003878000,0],[1709003879000,0],[1709003880000,0],[1709003881000,0],[1709003882000,0],[1709003883000,0],[1709003884000,0],[1709003885000,0],[1709003886000,0],[1709003887000,0],[1709003888000,0],[1709003889000,0],[1709003890000,0],[1709003891000,0],[1709003892000,0],[1709003893000,0],[1709003894000,0],[1709003895000,0],[1709003896000,0],[1709003897000,0],[1709003898000,0],[1709003899000,0],[1709003900000,0],[1709003901000,0],[1709003902000,0],[1709003903000,0],[1709003904000,0],[1709003905000,0],[1709003906000,0],[1709003907000,0],[1709003908000,0],[1709003909000,0],[1709003910000,0],[1709003911000,0],[1709003912000,0],[1709003913000,0],[1709003914000,0],[1709003915000,0],[1709003916000,0],[1709003917000,0],[1709003918000,0],[1709003919000,0],[1709003920000,0],[1709003921000,0],[1709003922000,0],[1709003923000,0],[1709003924000,0],[1709003925000,0],[1709003926000,0],[1709003927000,0],[1709003928000,0],[1709003929000,0],[1709003930000,0],[1709003931000,0],[1709003932000,0],[1709003933000,0],[1709003934000,0],[1709003935000,0],[1709003936000,0],[1709003937000,0],[1709003938000,0],[1709003939000,0],[1709003940000,0],[1709003941000,0],[1709003942000,0],[1709003943000,0],[1709003944000,0],[1709003945000,0],[1709003946000,0],[1709003947000,0],[1709003948000,0],[1709003949000,0],[1709003950000,0],[1709003951000,0],[1709003952000,0],[1709003953000,0],[1709003954000,0],[1709003955000,0],[1709003956000,0],[1709003957000,0],[1709003958000,0],[1709003959000,0],[1709003960000,0],[1709003961000,0],[1709003962000,0],[1709003963000,0],[1709003964000,0],[1709003965000,0],[1709003966000,0],[1709003967000,0],[1709003968000,0],[1709003969000,0],[1709003970000,0],[1709003971000,0],[1709003972000,0],[1709003973000,0],[1709003974000,0],[1709003975000,0],[1709003976000,0],[1709003977000,0],[1709003978000,0],[1709003979000,0],[1709003980000,0],[1709003981000,0],[1709003982000,0],[1709003983000,0],[1709003984000,0],[1709003985000,0],[1709003986000,0],[1709003987000,0],[1709003988000,0],[1709003989000,0],[1709003990000,0],[1709003991000,0],[1709003992000,0],[1709003993000,0],[1709003994000,0],[1709003995000,0],[1709003996000,0],[1709003997000,0],[1709003998000,0],[1709003999000,0],[1709004000000,0],[1709004001000,0],[1709004002000,0],[1709004003000,0],[1709004004000,0],[1709004005000,0],[1709004006000,0],[1709004007000,0],[1709004008000,0],[1709004009000,0],[1709004010000,0],[1709004011000,0],[1709004012000,0],[1709004013000,0],[1709004014000,0],[1709004015000,0],[1709004016000,0],[1709004017000,0],[1709004018000,0],[1709004019000,0],[1709004020000,0],[1709004021000,0],[1709004022000,0],[1709004023000,0],[1709004024000,0],[1709004025000,0],[1709004026000,0],[1709004027000,0],[1709004028000,0],[1709004029000,0],[1709004030000,0],[1709004031000,0],[1709004032000,0],[1709004033000,0],[1709004034000,0],[1709004035000,0],[1709004036000,0],[1709004037000,0],[1709004038000,0],[1709004039000,0],[1709004040000,0],[1709004041000,0],[1709004042000,0],[1709004043000,0],[1709004044000,0],[1709004045000,0],[1709004046000,0],[1709004047000,0],[1709004048000,0],[1709004049000,0],[1709004050000,0],[1709004051000,0],[1709004052000,0],[1709004053000,0],[1709004054000,0],[1709004055000,0],[1709004056000,0],[1709004057000,0],[1709004058000,0],[1709004059000,0],[1709004060000,0],[1709004061000,0],[1709004062000,0],[1709004063000,0],[1709004064000,0],[1709004065000,0],[1709004066000,0],[1709004067000,0],[1709004068000,0],[1709004069000,0],[1709004070000,0],[1709004071000,0],[1709004072000,0],[1709004073000,0],[1709004074000,0],[1709004075000,0],[1709004076000,0],[1709004077000,0],[1709004078000,0],[1709004079000,0],[1709004080000,0],[1709004081000,0],[1709004082000,0],[1709004083000,0],[1709004084000,0],[1709004085000,0],[1709004086000,0],[1709004087000,0],[1709004088000,0],[1709004089000,0],[1709004090000,0],[1709004091000,0],[1709004092000,0],[1709004093000,0],[1709004094000,0],[1709004095000,0],[1709004096000,0],[1709004097000,0],[1709004098000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1709003849000,0],[1709003850000,25],[1709003851000,24],[1709003852000,0],[1709003853000,0],[1709003854000,0],[1709003855000,0],[1709003856000,0],[1709003857000,0],[1709003858000,0],[1709003859000,0],[1709003860000,0],[1709003861000,0],[1709003862000,0],[1709003863000,0],[1709003864000,0],[1709003865000,0],[1709003866000,0],[1709003867000,0],[1709003868000,0],[1709003869000,0],[1709003870000,0],[1709003871000,0],[1709003872000,0],[1709003873000,0],[1709003874000,0],[1709003875000,0],[1709003876000,0],[1709003877000,0],[1709003878000,0],[1709003879000,0],[1709003880000,0],[1709003881000,0],[1709003882000,0],[1709003883000,0],[1709003884000,0],[1709003885000,0],[1709003886000,0],[1709003887000,0],[1709003888000,0],[1709003889000,0],[1709003890000,0],[1709003891000,0],[1709003892000,0],[1709003893000,0],[1709003894000,0],[1709003895000,0],[1709003896000,0],[1709003897000,0],[1709003898000,0],[1709003899000,0],[1709003900000,0],[1709003901000,0],[1709003902000,0],[1709003903000,0],[1709003904000,0],[1709003905000,0],[1709003906000,0],[1709003907000,0],[1709003908000,0],[1709003909000,0],[1709003910000,0],[1709003911000,0],[1709003912000,0],[1709003913000,0],[1709003914000,0],[1709003915000,0],[1709003916000,0],[1709003917000,0],[1709003918000,0],[1709003919000,0],[1709003920000,0],[1709003921000,0],[1709003922000,0],[1709003923000,0],[1709003924000,0],[1709003925000,0],[1709003926000,0],[1709003927000,0],[1709003928000,0],[1709003929000,0],[1709003930000,0],[1709003931000,0],[1709003932000,0],[1709003933000,0],[1709003934000,0],[1709003935000,0],[1709003936000,0],[1709003937000,0],[1709003938000,0],[1709003939000,0],[1709003940000,0],[1709003941000,0],[1709003942000,0],[1709003943000,0],[1709003944000,0],[1709003945000,0],[1709003946000,0],[1709003947000,0],[1709003948000,0],[1709003949000,0],[1709003950000,0],[1709003951000,0],[1709003952000,0],[1709003953000,0],[1709003954000,0],[1709003955000,0],[1709003956000,0],[1709003957000,0],[1709003958000,0],[1709003959000,0],[1709003960000,0],[1709003961000,0],[1709003962000,0],[1709003963000,0],[1709003964000,0],[1709003965000,0],[1709003966000,0],[1709003967000,0],[1709003968000,0],[1709003969000,0],[1709003970000,0],[1709003971000,0],[1709003972000,0],[1709003973000,0],[1709003974000,0],[1709003975000,0],[1709003976000,0],[1709003977000,0],[1709003978000,0],[1709003979000,0],[1709003980000,0],[1709003981000,0],[1709003982000,0],[1709003983000,0],[1709003984000,0],[1709003985000,0],[1709003986000,0],[1709003987000,0],[1709003988000,0],[1709003989000,0],[1709003990000,0],[1709003991000,0],[1709003992000,0],[1709003993000,0],[1709003994000,0],[1709003995000,0],[1709003996000,0],[1709003997000,0],[1709003998000,0],[1709003999000,0],[1709004000000,0],[1709004001000,0],[1709004002000,0],[1709004003000,0],[1709004004000,0],[1709004005000,0],[1709004006000,0],[1709004007000,0],[1709004008000,0],[1709004009000,0],[1709004010000,0],[1709004011000,0],[1709004012000,0],[1709004013000,0],[1709004014000,0],[1709004015000,0],[1709004016000,0],[1709004017000,0],[1709004018000,0],[1709004019000,0],[1709004020000,0],[1709004021000,0],[1709004022000,0],[1709004023000,0],[1709004024000,0],[1709004025000,0],[1709004026000,0],[1709004027000,0],[1709004028000,0],[1709004029000,0],[1709004030000,0],[1709004031000,0],[1709004032000,0],[1709004033000,0],[1709004034000,0],[1709004035000,0],[1709004036000,0],[1709004037000,0],[1709004038000,0],[1709004039000,0],[1709004040000,0],[1709004041000,0],[1709004042000,0],[1709004043000,0],[1709004044000,0],[1709004045000,0],[1709004046000,0],[1709004047000,0],[1709004048000,0],[1709004049000,0],[1709004050000,0],[1709004051000,0],[1709004052000,0],[1709004053000,0],[1709004054000,0],[1709004055000,0],[1709004056000,0],[1709004057000,0],[1709004058000,0],[1709004059000,0],[1709004060000,0],[1709004061000,0],[1709004062000,0],[1709004063000,0],[1709004064000,0],[1709004065000,0],[1709004066000,0],[1709004067000,0],[1709004068000,0],[1709004069000,0],[1709004070000,0],[1709004071000,0],[1709004072000,0],[1709004073000,0],[1709004074000,0],[1709004075000,0],[1709004076000,0],[1709004077000,0],[1709004078000,0],[1709004079000,0],[1709004080000,0],[1709004081000,0],[1709004082000,0],[1709004083000,0],[1709004084000,0],[1709004085000,0],[1709004086000,0],[1709004087000,0],[1709004088000,0],[1709004089000,0],[1709004090000,0],[1709004091000,0],[1709004092000,0],[1709004093000,0],[1709004094000,0],[1709004095000,0],[1709004096000,0],[1709004097000,0],[1709004098000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1709003849000,1],[1709003850000,1],[1709003851000,0],[1709003852000,0],[1709003853000,0],[1709003854000,0],[1709003855000,0],[1709003856000,0],[1709003857000,0],[1709003858000,0],[1709003859000,0],[1709003860000,0],[1709003861000,0],[1709003862000,0],[1709003863000,0],[1709003864000,0],[1709003865000,0],[1709003866000,0],[1709003867000,0],[1709003868000,0],[1709003869000,0],[1709003870000,0],[1709003871000,0],[1709003872000,0],[1709003873000,0],[1709003874000,0],[1709003875000,0],[1709003876000,0],[1709003877000,0],[1709003878000,0],[1709003879000,0],[1709003880000,0],[1709003881000,0],[1709003882000,0],[1709003883000,0],[1709003884000,0],[1709003885000,0],[1709003886000,0],[1709003887000,0],[1709003888000,0],[1709003889000,0],[1709003890000,0],[1709003891000,0],[1709003892000,0],[1709003893000,0],[1709003894000,0],[1709003895000,0],[1709003896000,0],[1709003897000,0],[1709003898000,0],[1709003899000,0],[1709003900000,0],[1709003901000,0],[1709003902000,0],[1709003903000,0],[1709003904000,0],[1709003905000,0],[1709003906000,0],[1709003907000,0],[1709003908000,0],[1709003909000,0],[1709003910000,0],[1709003911000,0],[1709003912000,0],[1709003913000,0],[1709003914000,0],[1709003915000,0],[1709003916000,0],[1709003917000,0],[1709003918000,0],[1709003919000,0],[1709003920000,0],[1709003921000,0],[1709003922000,0],[1709003923000,0],[1709003924000,0],[1709003925000,0],[1709003926000,0],[1709003927000,0],[1709003928000,0],[1709003929000,0],[1709003930000,0],[1709003931000,0],[1709003932000,0],[1709003933000,0],[1709003934000,0],[1709003935000,0],[1709003936000,0],[1709003937000,0],[1709003938000,0],[1709003939000,0],[1709003940000,0],[1709003941000,0],[1709003942000,0],[1709003943000,0],[1709003944000,0],[1709003945000,0],[1709003946000,0],[1709003947000,0],[1709003948000,0],[1709003949000,0],[1709003950000,0],[1709003951000,0],[1709003952000,0],[1709003953000,0],[1709003954000,0],[1709003955000,0],[1709003956000,0],[1709003957000,0],[1709003958000,0],[1709003959000,0],[1709003960000,0],[1709003961000,0],[1709003962000,0],[1709003963000,0],[1709003964000,0],[1709003965000,0],[1709003966000,0],[1709003967000,0],[1709003968000,0],[1709003969000,0],[1709003970000,0],[1709003971000,0],[1709003972000,0],[1709003973000,0],[1709003974000,0],[1709003975000,0],[1709003976000,0],[1709003977000,0],[1709003978000,0],[1709003979000,0],[1709003980000,0],[1709003981000,0],[1709003982000,0],[1709003983000,0],[1709003984000,0],[1709003985000,0],[1709003986000,0],[1709003987000,0],[1709003988000,0],[1709003989000,0],[1709003990000,0],[1709003991000,0],[1709003992000,0],[1709003993000,0],[1709003994000,0],[1709003995000,0],[1709003996000,0],[1709003997000,0],[1709003998000,0],[1709003999000,0],[1709004000000,0],[1709004001000,0],[1709004002000,0],[1709004003000,0],[1709004004000,0],[1709004005000,0],[1709004006000,0],[1709004007000,0],[1709004008000,0],[1709004009000,0],[1709004010000,0],[1709004011000,0],[1709004012000,0],[1709004013000,0],[1709004014000,0],[1709004015000,0],[1709004016000,0],[1709004017000,0],[1709004018000,0],[1709004019000,0],[1709004020000,0],[1709004021000,0],[1709004022000,0],[1709004023000,0],[1709004024000,0],[1709004025000,0],[1709004026000,0],[1709004027000,0],[1709004028000,0],[1709004029000,0],[1709004030000,0],[1709004031000,0],[1709004032000,0],[1709004033000,0],[1709004034000,0],[1709004035000,0],[1709004036000,0],[1709004037000,0],[1709004038000,0],[1709004039000,0],[1709004040000,0],[1709004041000,0],[1709004042000,0],[1709004043000,0],[1709004044000,0],[1709004045000,0],[1709004046000,0],[1709004047000,0],[1709004048000,0],[1709004049000,0],[1709004050000,0],[1709004051000,0],[1709004052000,0],[1709004053000,0],[1709004054000,0],[1709004055000,0],[1709004056000,0],[1709004057000,0],[1709004058000,0],[1709004059000,0],[1709004060000,0],[1709004061000,0],[1709004062000,0],[1709004063000,0],[1709004064000,0],[1709004065000,0],[1709004066000,0],[1709004067000,0],[1709004068000,0],[1709004069000,0],[1709004070000,0],[1709004071000,0],[1709004072000,0],[1709004073000,0],[1709004074000,0],[1709004075000,0],[1709004076000,0],[1709004077000,0],[1709004078000,0],[1709004079000,0],[1709004080000,0],[1709004081000,0],[1709004082000,0],[1709004083000,0],[1709004084000,0],[1709004085000,0],[1709004086000,0],[1709004087000,0],[1709004088000,0],[1709004089000,0],[1709004090000,0],[1709004091000,0],[1709004092000,0],[1709004093000,0],[1709004094000,0],[1709004095000,0],[1709004096000,0],[1709004097000,0],[1709004098000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1709003849000,25],[1709003850000,0],[1709003851000,0],[1709003852000,0],[1709003853000,0],[1709003854000,0],[1709003855000,0],[1709003856000,0],[1709003857000,0],[1709003858000,0],[1709003859000,0],[1709003860000,0],[1709003861000,0],[1709003862000,0],[1709003863000,0],[1709003864000,0],[1709003865000,0],[1709003866000,0],[1709003867000,0],[1709003868000,0],[1709003869000,0],[1709003870000,0],[1709003871000,0],[1709003872000,0],[1709003873000,0],[1709003874000,0],[1709003875000,0],[1709003876000,0],[1709003877000,0],[1709003878000,0],[1709003879000,0],[1709003880000,0],[1709003881000,0],[1709003882000,0],[1709003883000,0],[1709003884000,0],[1709003885000,0],[1709003886000,0],[1709003887000,0],[1709003888000,0],[1709003889000,0],[1709003890000,0],[1709003891000,0],[1709003892000,0],[1709003893000,0],[1709003894000,0],[1709003895000,0],[1709003896000,0],[1709003897000,0],[1709003898000,0],[1709003899000,0],[1709003900000,0],[1709003901000,0],[1709003902000,0],[1709003903000,0],[1709003904000,0],[1709003905000,0],[1709003906000,0],[1709003907000,0],[1709003908000,0],[1709003909000,0],[1709003910000,0],[1709003911000,0],[1709003912000,0],[1709003913000,0],[1709003914000,0],[1709003915000,0],[1709003916000,0],[1709003917000,0],[1709003918000,0],[1709003919000,0],[1709003920000,0],[1709003921000,0],[1709003922000,0],[1709003923000,0],[1709003924000,0],[1709003925000,0],[1709003926000,0],[1709003927000,0],[1709003928000,0],[1709003929000,0],[1709003930000,0],[1709003931000,0],[1709003932000,0],[1709003933000,0],[1709003934000,0],[1709003935000,0],[1709003936000,0],[1709003937000,0],[1709003938000,0],[1709003939000,0],[1709003940000,0],[1709003941000,0],[1709003942000,0],[1709003943000,0],[1709003944000,0],[1709003945000,0],[1709003946000,0],[1709003947000,0],[1709003948000,0],[1709003949000,0],[1709003950000,0],[1709003951000,0],[1709003952000,0],[1709003953000,0],[1709003954000,0],[1709003955000,0],[1709003956000,0],[1709003957000,0],[1709003958000,0],[1709003959000,0],[1709003960000,0],[1709003961000,0],[1709003962000,0],[1709003963000,0],[1709003964000,0],[1709003965000,0],[1709003966000,0],[1709003967000,0],[1709003968000,0],[1709003969000,0],[1709003970000,0],[1709003971000,0],[1709003972000,0],[1709003973000,0],[1709003974000,0],[1709003975000,0],[1709003976000,0],[1709003977000,0],[1709003978000,0],[1709003979000,0],[1709003980000,0],[1709003981000,0],[1709003982000,0],[1709003983000,0],[1709003984000,0],[1709003985000,0],[1709003986000,0],[1709003987000,0],[1709003988000,0],[1709003989000,0],[1709003990000,0],[1709003991000,0],[1709003992000,0],[1709003993000,0],[1709003994000,0],[1709003995000,0],[1709003996000,0],[1709003997000,0],[1709003998000,0],[1709003999000,0],[1709004000000,0],[1709004001000,0],[1709004002000,0],[1709004003000,0],[1709004004000,0],[1709004005000,0],[1709004006000,0],[1709004007000,0],[1709004008000,0],[1709004009000,0],[1709004010000,0],[1709004011000,0],[1709004012000,0],[1709004013000,0],[1709004014000,0],[1709004015000,0],[1709004016000,0],[1709004017000,0],[1709004018000,0],[1709004019000,0],[1709004020000,0],[1709004021000,0],[1709004022000,0],[1709004023000,0],[1709004024000,0],[1709004025000,0],[1709004026000,0],[1709004027000,0],[1709004028000,0],[1709004029000,0],[1709004030000,0],[1709004031000,0],[1709004032000,0],[1709004033000,0],[1709004034000,0],[1709004035000,0],[1709004036000,0],[1709004037000,0],[1709004038000,0],[1709004039000,0],[1709004040000,0],[1709004041000,0],[1709004042000,0],[1709004043000,0],[1709004044000,0],[1709004045000,0],[1709004046000,0],[1709004047000,0],[1709004048000,0],[1709004049000,0],[1709004050000,0],[1709004051000,0],[1709004052000,0],[1709004053000,0],[1709004054000,0],[1709004055000,0],[1709004056000,0],[1709004057000,0],[1709004058000,0],[1709004059000,0],[1709004060000,0],[1709004061000,0],[1709004062000,0],[1709004063000,0],[1709004064000,0],[1709004065000,0],[1709004066000,0],[1709004067000,0],[1709004068000,0],[1709004069000,0],[1709004070000,0],[1709004071000,0],[1709004072000,0],[1709004073000,0],[1709004074000,0],[1709004075000,0],[1709004076000,0],[1709004077000,0],[1709004078000,0],[1709004079000,0],[1709004080000,0],[1709004081000,0],[1709004082000,0],[1709004083000,0],[1709004084000,0],[1709004085000,0],[1709004086000,0],[1709004087000,0],[1709004088000,0],[1709004089000,0],[1709004090000,0],[1709004091000,0],[1709004092000,0],[1709004093000,0],[1709004094000,0],[1709004095000,0],[1709004096000,0],[1709004097000,0],[1709004098000,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', '3300', '3900', '4500', '5100', '5700', '6300', '6900', '7500', '8100', '8700', '9300', '9900', '10500', '11100', '11700', '12300', '12900', '13500', '14100', '14700', '15300', '15900', '16500', '17100', '17700', '18300', '18900', '19500', '20100', '20700', '21300', '21900', '22500', '23100', '23700', '24300', '24900', '25500', '26100', '26700', '27300', '27900', '28500', '29100', '29700', '30301', '30901', '31501', '32101', '32701', '33301', '33901', '34501', '35101', '35701', '36301', '36901', '37501', '38101', '38701', '39301', '39901', '40501', '41101', '41701', '42301', '42901', '43501', '44101', '44701', '45301', '45901', '46501', '47101', '47701', '48301', '48901', '49501', '50101', '50701', '51301', '51901', '52501', '53101', '53701', '54301', '54901', '55501', '56101', '56701', '57301', '57901', '58501', '59101', '59701'],
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: [
23.22,0.26,0.03,0.03,0.04,0.03,0.03,0.02,13.08,0.12,0.01,0.11,0.11,0.11,0.03,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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: [
56.37,0.01,0.01,0.01,0.01,0.01,0.0,0.0,5.93,0.04,0.0,0.04,0.06,0.06,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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([[1709003849,[18,88,123,195,206,210,214,269,290,293]],[1709003850,[7,7,7,7,7,7,7,7,7,7]],[1709003851,[16,28,120,220,224,229,231,232,304,327]],[1709003852,[7,7,7,7,7,7,7,7,7,7]],[1709003853,[2,3,16,29,63,83,88,104,131,178]],[1709003854,[8,8,8,8,8,8,8,8,8,8]],[1709003855,[7,7,9,11,12,12,12,12,12,13]],[1709003856,[6,6,7,8,8,8,28,67,99,108]],[1709003857,[6,6,7,7,7,7,8,8,8,9]],[1709003858,[5,6,6,7,7,7,7,7,7,8]],[1709003859,[5,6,6,6,7,7,9,10,10,10]],[1709003860,[5,6,6,6,6,6,7,7,7,8]],[1709003861,[5,6,6,6,6,7,8,9,85,108]],[1709003862,[5,6,6,7,7,7,7,8,82,107]],[1709003863,[5,6,6,6,6,7,7,8,83,110]],[1709003864,[5,5,6,6,7,7,7,7,76,108]],[1709003865,[5,5,6,6,6,7,7,106,107,108]],[1709003866,[5,5,6,6,6,7,7,8,71,107]],[1709003867,[4,5,6,6,7,7,7,106,107,108]],[1709003868,[3,5,5,6,6,6,7,7,65,106]],[1709003869,[3,5,5,6,6,6,6,7,8,8]],[1709003870,[3,5,5,6,6,6,6,7,8,9]],[1709003871,[3,5,5,6,6,6,6,7,9,11]],[1709003872,[3,5,5,5,6,6,6,6,105,106]],[1709003873,[3,5,6,6,6,6,7,7,10,11]],[1709003874,[3,5,5,6,6,6,6,7,9,9]],[1709003875,[3,5,5,6,6,6,7,9,146,207]],[1709003876,[3,4,5,5,5,6,6,6,7,7]],[1709003877,[3,4,5,5,6,6,6,6,105,105]],[1709003878,[3,4,5,6,6,6,6,6,106,107]],[1709003879,[2,5,5,5,6,6,6,7,105,105]],[1709003880,[3,5,5,5,5,6,6,6,103,107]],[1709003881,[3,5,5,6,6,6,6,6,32,107]],[1709003882,[3,5,5,5,6,6,6,6,7,7]],[1709003883,[3,5,5,6,6,6,6,6,23,105]],[1709003884,[3,4,5,5,5,5,6,6,105,106]],[1709003885,[3,4,5,5,5,6,6,6,19,108]],[1709003886,[2,4,5,5,5,6,6,7,9,16]],[1709003887,[3,4,5,5,6,6,6,7,14,106]],[1709003888,[2,4,5,5,6,6,6,6,106,106]],[1709003889,[3,5,5,6,6,6,7,105,106,106]],[1709003890,[3,5,5,6,6,6,6,90,106,207]],[1709003891,[2,4,5,5,5,5,6,6,98,106]],[1709003892,[2,4,5,5,5,5,5,6,10,106]],[1709003893,[2,4,5,5,5,5,6,6,93,105]],[1709003894,[2,4,5,5,5,5,5,6,105,106]],[1709003895,[3,5,5,5,5,5,6,6,88,108]],[1709003896,[2,4,5,5,5,6,6,7,87,108]],[1709003897,[2,5,5,6,12,40,74,106,149,157]],[1709003898,[3,5,5,5,5,5,6,6,106,106]],[1709003899,[2,4,5,5,5,5,5,6,105,206]],[1709003900,[2,4,5,5,5,6,6,53,106,108]],[1709003901,[3,4,5,5,5,6,56,106,107,108]],[1709003902,[3,4,5,5,5,5,6,6,105,107]],[1709003903,[2,4,5,5,5,5,6,6,105,112]],[1709003904,[2,4,5,5,5,5,5,6,104,105]],[1709003905,[3,4,5,5,5,5,6,6,7,9]],[1709003906,[2,4,4,5,5,5,5,5,6,6]],[1709003907,[2,4,5,5,5,5,5,6,6,106]],[1709003908,[2,4,4,5,5,5,5,6,54,106]],[1709003909,[2,4,4,5,5,5,6,16,105,109]],[1709003910,[2,4,4,5,5,5,5,6,104,106]],[1709003911,[2,4,5,5,5,5,5,6,106,107]],[1709003912,[3,4,5,5,5,5,6,6,105,106]],[1709003913,[2,4,5,5,5,6,6,6,105,106]],[1709003914,[2,4,5,5,6,6,6,7,13,106]],[1709003915,[2,4,5,5,5,5,6,6,7,106]],[1709003916,[2,4,5,5,6,6,6,7,106,108]],[1709003917,[2,4,5,5,5,5,5,6,6,21]],[1709003918,[2,4,4,5,5,5,5,6,106,107]],[1709003919,[2,4,5,5,5,5,5,5,26,106]],[1709003920,[2,4,5,5,5,5,6,6,106,206]],[1709003921,[2,4,5,5,5,5,5,6,105,107]],[1709003922,[2,4,5,5,5,5,5,6,6,8]],[1709003923,[2,4,4,5,5,5,6,6,105,107]],[1709003924,[2,4,5,5,5,5,6,6,106,106]],[1709003925,[2,4,4,5,5,5,5,6,105,105]],[1709003926,[2,4,5,5,5,5,6,6,105,105]],[1709003927,[2,4,4,5,5,5,5,6,25,34]],[1709003928,[2,3,4,5,5,5,5,5,95,106]],[1709003929,[2,4,5,5,5,5,5,5,6,107]],[1709003930,[3,4,4,5,5,5,5,6,7,208]],[1709003931,[2,4,4,5,5,5,5,6,8,117]],[1709003932,[2,4,4,5,5,5,5,6,86,106]],[1709003933,[2,4,4,5,5,5,5,6,105,108]],[1709003934,[2,4,4,5,5,5,6,17,105,108]],[1709003935,[2,4,4,5,5,5,5,6,105,107]],[1709003936,[2,4,5,5,5,5,6,22,106,112]],[1709003937,[2,4,5,5,5,5,5,6,105,106]],[1709003938,[2,4,4,5,5,5,5,6,14,217]],[1709003939,[2,4,5,5,5,6,7,13,104,108]],[1709003940,[2,4,4,5,5,5,6,9,105,108]],[1709003941,[2,4,4,5,5,5,5,8,23,109]],[1709003942,[2,4,4,5,5,5,6,7,106,107]],[1709003943,[2,4,5,5,5,7,15,46,106,116]],[1709003944,[2,4,5,11,16,22,32,47,106,124]],[1709003945,[2,4,5,6,7,12,18,40,105,123]],[1709003946,[2,4,5,5,5,6,16,33,105,125]],[1709003947,[2,4,5,22,28,35,42,53,107,116]],[1709003948,[2,15,70,171,190,203,231,285,347,444]],[1709003949,[2,131,272,367,407,455,515,682,857,901]],[1709003950,[2,267,418,496,512,537,578,637,803,977]],[1709003951,[2,277,355,433,467,493,559,631,918,1048]],[1709003952,[2,271,391,463,493,540,588,689,881,963]],[1709003953,[2,255,379,566,633,708,786,1084,9222,9435]],[1709003954,[10,315,1470,8060,8170,8286,8393,8572,8931,9036]],[1709003955,[88,4695,7070,7449,7543,7619,7702,7839,8069,8294]],[1709003956,[593,5402,6653,6781,6800,6823,6861,6891,7014,7110]],[1709003957,[492,5006,5340,5512,5580,5607,5695,5702,5721,5726]],[1709003958,[399,4021,4242,4790,4869,4893,4920,5079,5182,5208]],[1709003959,[2898,3124,3491,3612,3618,3772,3916,3980,3983,3984]],[1709003960,[1999,2296,2451,2509,2620,2697,2729,2788,2801,2805]],[1709003961,[917,1167,1352,1709,1784,1797,1848,1943,2060,2090]],[1709003962,[2,5274,5396,5650,5668,5681,5712,5745,5862,5867]],[1709003963,[5004,5012,5057,5133,5162,5197,5235,5287,5363,5383]],[1709003964,[5003,5005,5007,5008,5009,5011,5017,5022,5034,5037]],[1709003965,null],[1709003966,null],[1709003967,null],[1709003968,[5002,5008,5029,5058,5062,5079,5091,5113,5169,5183]],[1709003969,[5003,5006,5007,5012,5015,5020,5025,5035,5048,5053]],[1709003970,null],[1709003971,null],[1709003972,null],[1709003973,[5003,5005,5007,5014,5017,5027,5035,5050,5060,5073]],[1709003974,[5002,5007,5008,5026,5029,5034,5038,5043,5052,5056]],[1709003975,null],[1709003976,null],[1709003977,null],[1709003978,[5003,5005,5006,5007,5008,5008,5008,5013,5033,5039]],[1709003979,[5002,5006,5007,5016,5027,5032,5038,5044,5057,5062]],[1709003980,null],[1709003981,null],[1709003982,null],[1709003983,[5002,5005,5006,5007,5007,5007,5008,5009,5013,5019]],[1709003984,[5002,5006,5006,5008,5008,5010,5011,5019,5036,5103]],[1709003985,[5002,5006,5007,5029,5035,5046,5059,5075,5080,5081]],[1709003986,null],[1709003987,null],[1709003988,[5003,5006,5006,5007,5007,5007,5008,5009,5011,5016]],[1709003989,[5003,5006,5007,5007,5008,5008,5008,5010,5014,5020]],[1709003990,[5004,5006,5006,5007,5009,5033,5044,5064,5085,5090]],[1709003991,null],[1709003992,null],[1709003993,[5002,5005,5006,5007,5007,5007,5007,5008,5022,5034]],[1709003994,[5002,5006,5006,5008,5008,5009,5010,5020,5059,5068]],[1709003995,[5003,5005,5006,5007,5007,5007,5008,5008,5011,5013]],[1709003996,null],[1709003997,null],[1709003998,[5002,5005,5006,5006,5007,5007,5007,5007,5008,5011]],[1709003999,[5002,5005,5006,5007,5007,5007,5008,5010,5032,5067]],[1709004000,[5003,5006,5006,5006,5006,5007,5007,5007,5007,5007]],[1709004001,null],[1709004002,null],[1709004003,[5003,5006,5006,5007,5007,5007,5008,5008,5010,5011]],[1709004004,[5003,5006,5007,5008,5008,5009,5010,5012,5020,5029]],[1709004005,[5003,5005,5006,5007,5007,5007,5007,5008,5011,5011]],[1709004006,null],[1709004007,null],[1709004008,[5003,5005,5006,5007,5007,5007,5008,5008,5008,5009]],[1709004009,[5002,5005,5006,5007,5007,5007,5007,5009,5015,5016]],[1709004010,[5002,5006,5006,5008,5009,5011,5012,5018,5022,5025]],[1709004011,null],[1709004012,null],[1709004013,[5003,5006,5006,5007,5007,5008,5009,5009,5011,5021]],[1709004014,[5002,5005,5006,5007,5007,5007,5007,5008,5011,5020]],[1709004015,[5003,5006,5006,5007,5007,5007,5009,5013,5020,5023]],[1709004016,null],[1709004017,null],[1709004018,[5004,5006,5006,5007,5007,5008,5009,5011,5014,5016]],[1709004019,[5002,5005,5006,5007,5007,5007,5008,5009,5020,5025]],[1709004020,[5003,5005,5006,5006,5006,5006,5006,5007,5008,5009]],[1709004021,null],[1709004022,[5006,5006,5006,5006,5006,5006,5006,5006,5006,5006]],[1709004023,null],[1709004024,null],[1709004025,null],[1709004026,null],[1709004027,null],[1709004028,null],[1709004029,null],[1709004030,null],[1709004031,null],[1709004032,null],[1709004033,null],[1709004034,null],[1709004035,null],[1709004036,null],[1709004037,[5005,5005,5006,5006,5006,5006,5006,5006,5006,5007]],[1709004038,[5002,5006,5007,5011,5011,5015,5021,5034,5061,5114]],[1709004039,[5004,5007,5007,5014,5018,5022,5029,5034,5044,5094]],[1709004040,null],[1709004041,null],[1709004042,[5005,5005,5005,5005,5005,5005,5005,5005,5005,5005]],[1709004043,[5002,5005,5006,5007,5008,5011,5014,5023,5037,5070]],[1709004044,[5002,5006,5007,5018,5022,5027,5032,5036,5043,5046]],[1709004045,null],[1709004046,null],[1709004047,null],[1709004048,[5002,5005,5006,5007,5007,5008,5008,5011,5019,5020]],[1709004049,[5002,5006,5007,5009,5011,5015,5023,5031,5044,5050]],[1709004050,null],[1709004051,null],[1709004052,null],[1709004053,[5003,5006,5006,5007,5007,5008,5008,5009,5013,5023]],[1709004054,[5003,5006,5007,5008,5008,5009,5010,5013,5025,5028]],[1709004055,null],[1709004056,null],[1709004057,null],[1709004058,[5002,5005,5006,5007,5007,5008,5009,5011,5014,5017]],[1709004059,[5002,5005,5006,5007,5008,5010,5015,5029,5048,5059]],[1709004060,null],[1709004061,null],[1709004062,null],[1709004063,[5003,5006,5007,5008,5009,5010,5011,5025,5052,5102]],[1709004064,[5002,5005,5006,5007,5007,5007,5008,5008,5040,5049]],[1709004065,null],[1709004066,null],[1709004067,null],[1709004068,[5003,5006,5006,5007,5008,5008,5009,5031,5088,5120]],[1709004069,[5003,5005,5006,5007,5007,5007,5007,5008,5009,5010]],[1709004070,null],[1709004071,null],[1709004072,null],[1709004073,[5003,5006,5007,5007,5008,5008,5009,5011,5037,5051]],[1709004074,[5002,5005,5006,5007,5007,5007,5008,5008,5011,5014]],[1709004075,null],[1709004076,null],[1709004077,null],[1709004078,[5002,5006,5007,5007,5007,5008,5008,5010,5012,5022]],[1709004079,[5002,5006,5006,5007,5007,5007,5008,5008,5015,5016]],[1709004080,[5006,5006,5006,5007,5007,5007,5007,5007,5007,5008]],[1709004081,null],[1709004082,null],[1709004083,[5002,5005,5006,5007,5007,5007,5008,5010,5011,5018]],[1709004084,[5002,5006,5006,5007,5007,5008,5008,5009,5011,5013]],[1709004085,[5004,5005,5005,5006,5007,5007,5007,5007,5007,5007]],[1709004086,null],[1709004087,null],[1709004088,[5001,5005,5006,5007,5007,5007,5008,5008,5012,5045]],[1709004089,[5002,5005,5006,5007,5007,5008,5009,5022,5088,5112]],[1709004090,[5004,5004,5005,5006,5006,5006,5007,5007,5007,5008]],[1709004091,null],[1709004092,null],[1709004093,[5003,5006,5006,5007,5008,5008,5008,5008,5009,5067]],[1709004094,[5003,5005,5006,5007,5007,5008,5008,5009,5039,5114]],[1709004095,null],[1709004096,null],[1709004097,null],[1709004098,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([[1709003849,[25,25,0]],[1709003850,[1,1,0]],[1709003851,[25,25,0]],[1709003852,[1,1,0]],[1709003853,[71,71,0]],[1709003854,[3,3,0]],[1709003855,[6,6,0]],[1709003856,[9,9,0]],[1709003857,[11,11,0]],[1709003858,[13,13,0]],[1709003859,[18,18,0]],[1709003860,[19,19,0]],[1709003861,[24,24,0]],[1709003862,[26,26,0]],[1709003863,[27,27,0]],[1709003864,[32,32,0]],[1709003865,[34,34,0]],[1709003866,[37,37,0]],[1709003867,[40,40,0]],[1709003868,[42,42,0]],[1709003869,[45,45,0]],[1709003870,[48,48,0]],[1709003871,[50,50,0]],[1709003872,[54,54,0]],[1709003873,[56,56,0]],[1709003874,[60,60,0]],[1709003875,[61,61,0]],[1709003876,[65,65,0]],[1709003877,[67,67,0]],[1709003878,[72,72,0]],[1709003879,[73,73,0]],[1709003880,[77,77,0]],[1709003881,[78,78,0]],[1709003882,[81,81,0]],[1709003883,[84,84,0]],[1709003884,[89,89,0]],[1709003885,[89,89,0]],[1709003886,[93,93,0]],[1709003887,[96,96,0]],[1709003888,[98,98,0]],[1709003889,[102,102,0]],[1709003890,[104,104,0]],[1709003891,[108,108,0]],[1709003892,[109,109,0]],[1709003893,[113,113,0]],[1709003894,[115,115,0]],[1709003895,[119,119,0]],[1709003896,[121,121,0]],[1709003897,[123,123,0]],[1709003898,[126,126,0]],[1709003899,[129,129,0]],[1709003900,[133,133,0]],[1709003901,[136,136,0]],[1709003902,[137,137,0]],[1709003903,[142,142,0]],[1709003904,[142,142,0]],[1709003905,[147,147,0]],[1709003906,[149,149,0]],[1709003907,[152,152,0]],[1709003908,[154,154,0]],[1709003909,[158,158,0]],[1709003910,[160,160,0]],[1709003911,[163,163,0]],[1709003912,[166,166,0]],[1709003913,[170,170,0]],[1709003914,[171,171,0]],[1709003915,[173,173,0]],[1709003916,[178,178,0]],[1709003917,[180,180,0]],[1709003918,[183,183,0]],[1709003919,[185,185,0]],[1709003920,[189,189,0]],[1709003921,[191,191,0]],[1709003922,[194,194,0]],[1709003923,[197,197,0]],[1709003924,[199,199,0]],[1709003925,[204,204,0]],[1709003926,[205,205,0]],[1709003927,[207,207,0]],[1709003928,[211,211,0]],[1709003929,[213,213,0]],[1709003930,[217,217,0]],[1709003931,[220,220,0]],[1709003932,[222,222,0]],[1709003933,[225,225,0]],[1709003934,[227,227,0]],[1709003935,[231,231,0]],[1709003936,[233,233,0]],[1709003937,[237,237,0]],[1709003938,[237,237,0]],[1709003939,[244,244,0]],[1709003940,[243,243,0]],[1709003941,[249,249,0]],[1709003942,[250,250,0]],[1709003943,[252,252,0]],[1709003944,[256,256,0]],[1709003945,[259,259,0]],[1709003946,[262,262,0]],[1709003947,[264,264,0]],[1709003948,[266,266,0]],[1709003949,[271,271,0]],[1709003950,[272,260,12]],[1709003951,[275,269,6]],[1709003952,[279,265,14]],[1709003953,[281,279,2]],[1709003954,[285,228,57]],[1709003955,[286,201,85]],[1709003956,[290,47,243]],[1709003957,[291,20,271]],[1709003958,[296,22,274]],[1709003959,[297,17,280]],[1709003960,[301,18,283]],[1709003961,[304,16,288]],[1709003962,[306,97,209]],[1709003963,[309,200,109]],[1709003964,[312,46,266]],[1709003965,[315,0,315]],[1709003966,[317,0,317]],[1709003967,[321,0,321]],[1709003968,[322,164,158]],[1709003969,[327,157,170]],[1709003970,[329,0,329]],[1709003971,[332,0,332]],[1709003972,[335,0,335]],[1709003973,[338,133,205]],[1709003974,[340,189,151]],[1709003975,[340,0,340]],[1709003976,[340,0,340]],[1709003977,[339,0,339]],[1709003978,[340,113,227]],[1709003979,[340,207,133]],[1709003980,[341,0,341]],[1709003981,[339,0,339]],[1709003982,[341,0,341]],[1709003983,[339,111,228]],[1709003984,[341,194,147]],[1709003985,[339,24,315]],[1709003986,[341,0,341]],[1709003987,[340,0,340]],[1709003988,[340,120,220]],[1709003989,[340,179,161]],[1709003990,[339,32,307]],[1709003991,[341,0,341]],[1709003992,[340,0,340]],[1709003993,[340,119,221]],[1709003994,[340,197,143]],[1709003995,[339,40,299]],[1709003996,[340,0,340]],[1709003997,[341,0,341]],[1709003998,[340,119,221]],[1709003999,[340,196,144]],[1709004000,[340,48,292]],[1709004001,[339,0,339]],[1709004002,[341,0,341]],[1709004003,[340,112,228]],[1709004004,[340,188,152]],[1709004005,[340,49,291]],[1709004006,[340,0,340]],[1709004007,[340,0,340]],[1709004008,[339,96,243]],[1709004009,[341,177,164]],[1709004010,[340,54,286]],[1709004011,[340,0,340]],[1709004012,[340,0,340]],[1709004013,[339,98,241]],[1709004014,[341,177,164]],[1709004015,[340,57,283]],[1709004016,[339,0,339]],[1709004017,[341,0,341]],[1709004018,[340,111,229]],[1709004019,[340,188,152]],[1709004020,[340,59,281]],[1709004021,[339,0,339]],[1709004022,[341,2,339]],[1709004023,[339,0,339]],[1709004024,[341,0,341]],[1709004025,[340,0,340]],[1709004026,[340,0,340]],[1709004027,[340,0,340]],[1709004028,[340,0,340]],[1709004029,[340,0,340]],[1709004030,[340,0,340]],[1709004031,[340,0,340]],[1709004032,[339,0,339]],[1709004033,[341,0,341]],[1709004034,[340,0,340]],[1709004035,[340,0,340]],[1709004036,[340,0,340]],[1709004037,[340,4,336]],[1709004038,[340,220,120]],[1709004039,[340,100,240]],[1709004040,[340,0,340]],[1709004041,[340,0,340]],[1709004042,[339,1,338]],[1709004043,[341,202,139]],[1709004044,[340,126,214]],[1709004045,[340,0,340]],[1709004046,[340,0,340]],[1709004047,[340,0,340]],[1709004048,[340,192,148]],[1709004049,[340,146,194]],[1709004050,[340,0,340]],[1709004051,[339,0,339]],[1709004052,[341,0,341]],[1709004053,[340,194,146]],[1709004054,[340,147,193]],[1709004055,[340,0,340]],[1709004056,[340,0,340]],[1709004057,[340,0,340]],[1709004058,[339,187,152]],[1709004059,[341,147,194]],[1709004060,[339,0,339]],[1709004061,[341,0,341]],[1709004062,[340,0,340]],[1709004063,[340,190,150]],[1709004064,[340,168,172]],[1709004065,[340,0,340]],[1709004066,[340,0,340]],[1709004067,[340,0,340]],[1709004068,[340,186,154]],[1709004069,[340,171,169]],[1709004070,[340,0,340]],[1709004071,[340,0,340]],[1709004072,[340,0,340]],[1709004073,[340,182,158]],[1709004074,[339,170,169]],[1709004075,[340,0,340]],[1709004076,[340,0,340]],[1709004077,[341,0,341]],[1709004078,[340,174,166]],[1709004079,[340,193,147]],[1709004080,[340,3,337]],[1709004081,[339,0,339]],[1709004082,[340,0,340]],[1709004083,[341,157,184]],[1709004084,[340,202,138]],[1709004085,[340,6,334]],[1709004086,[340,0,340]],[1709004087,[340,0,340]],[1709004088,[339,154,185]],[1709004089,[341,165,176]],[1709004090,[340,8,332]],[1709004091,[340,0,340]],[1709004092,[340,0,340]],[1709004093,[340,164,176]],[1709004094,[160,81,79]],[1709004095,[0,0,0]],[1709004096,[0,0,0]],[1709004097,[0,0,0]],[1709004098,[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: {