-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1240 lines (1170 loc) · 111 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 03:40:51 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>4m 59s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - devkemc-node">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - devkemc-node</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">30035</td>
<td class="value error-col-3 total ko">99.652 %</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">1</span></td>
<td class="value error-col-2 total ko">61</td>
<td class="value error-col-3 total ko">0.202 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(danada), but actually found toma<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">16</td>
<td class="value error-col-3 total ko">0.053 %</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">3</span></td>
<td class="value error-col-2 total ko">10</td>
<td class="value error-col-3 total ko">0.033 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 504<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total ko">6</td>
<td class="value error-col-3 total ko">0.02 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(devolve), but actually found toma<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.013 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(danada), but actually found validacao<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.013 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(0), but actually found -2<span class="value" style="display:none">7</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.007 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(-25), but actually found -13<span class="value" style="display:none">8</span></td>
<td class="value error-col-2 total ko">1</td>
<td class="value error-col-3 total ko">0.003 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(devolve), but actually found validacao<span class="value" style="display:none">9</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: [
[1708314051000,0],[1708314052000,0],[1708314053000,0],[1708314054000,0],[1708314055000,1],[1708314056000,2],[1708314057000,2],[1708314058000,4],[1708314059000,4],[1708314060000,5],[1708314061000,6],[1708314062000,7],[1708314063000,8],[1708314064000,8],[1708314065000,10],[1708314066000,10],[1708314067000,12],[1708314068000,12],[1708314069000,14],[1708314070000,14],[1708314071000,15],[1708314072000,16],[1708314073000,17],[1708314074000,17],[1708314075000,19],[1708314076000,20],[1708314077000,20],[1708314078000,22],[1708314079000,22],[1708314080000,23],[1708314081000,25],[1708314082000,25],[1708314083000,26],[1708314084000,26],[1708314085000,28],[1708314086000,29],[1708314087000,30],[1708314088000,30],[1708314089000,32],[1708314090000,32],[1708314091000,33],[1708314092000,34],[1708314093000,35],[1708314094000,36],[1708314095000,37],[1708314096000,38],[1708314097000,39],[1708314098000,39],[1708314099000,41],[1708314100000,41],[1708314101000,43],[1708314102000,43],[1708314103000,44],[1708314104000,45],[1708314105000,46],[1708314106000,47],[1708314107000,48],[1708314108000,48],[1708314109000,50],[1708314110000,50],[1708314111000,52],[1708314112000,52],[1708314113000,53],[1708314114000,54],[1708314115000,56],[1708314116000,55],[1708314117000,57],[1708314118000,58],[1708314119000,59],[1708314120000,59],[1708314121000,61],[1708314122000,62],[1708314123000,64],[1708314124000,64],[1708314125000,65],[1708314126000,66],[1708314127000,67],[1708314128000,68],[1708314129000,69],[1708314130000,69],[1708314131000,71],[1708314132000,71],[1708314133000,73],[1708314134000,73],[1708314135000,74],[1708314136000,75],[1708314137000,76],[1708314138000,77],[1708314139000,78],[1708314140000,79],[1708314141000,80],[1708314142000,80],[1708314143000,82],[1708314144000,82],[1708314145000,110],[1708314146000,105],[1708314147000,109],[1708314148000,118],[1708314149000,118],[1708314150000,120],[1708314151000,121],[1708314152000,111],[1708314153000,110],[1708314154000,127],[1708314155000,144],[1708314156000,159],[1708314157000,174],[1708314158000,211],[1708314159000,228],[1708314160000,233],[1708314161000,253],[1708314162000,287],[1708314163000,316],[1708314164000,328],[1708314165000,339],[1708314166000,358],[1708314167000,367],[1708314168000,382],[1708314169000,397],[1708314170000,414],[1708314171000,435],[1708314172000,464],[1708314173000,495],[1708314174000,552],[1708314175000,591],[1708314176000,634],[1708314177000,684],[1708314178000,732],[1708314179000,781],[1708314180000,821],[1708314181000,858],[1708314182000,908],[1708314183000,743],[1708314184000,812],[1708314185000,871],[1708314186000,935],[1708314187000,767],[1708314188000,837],[1708314189000,911],[1708314190000,685],[1708314191000,776],[1708314192000,874],[1708314193000,643],[1708314194000,752],[1708314195000,854],[1708314196000,650],[1708314197000,760],[1708314198000,870],[1708314199000,643],[1708314200000,753],[1708314201000,863],[1708314202000,618],[1708314203000,728],[1708314204000,838],[1708314205000,621],[1708314206000,731],[1708314207000,841],[1708314208000,628],[1708314209000,738],[1708314210000,848],[1708314211000,630],[1708314212000,740],[1708314213000,850],[1708314214000,632],[1708314215000,742],[1708314216000,852],[1708314217000,667],[1708314218000,777],[1708314219000,887],[1708314220000,658],[1708314221000,768],[1708314222000,878],[1708314223000,671],[1708314224000,781],[1708314225000,891],[1708314226000,683],[1708314227000,793],[1708314228000,581],[1708314229000,691],[1708314230000,801],[1708314231000,611],[1708314232000,721],[1708314233000,831],[1708314234000,613],[1708314235000,723],[1708314236000,833],[1708314237000,614],[1708314238000,724],[1708314239000,834],[1708314240000,627],[1708314241000,737],[1708314242000,847],[1708314243000,639],[1708314244000,749],[1708314245000,859],[1708314246000,669],[1708314247000,779],[1708314248000,889],[1708314249000,669],[1708314250000,779],[1708314251000,889],[1708314252000,701],[1708314253000,811],[1708314254000,595],[1708314255000,705],[1708314256000,815],[1708314257000,616],[1708314258000,726],[1708314259000,836],[1708314260000,636],[1708314261000,746],[1708314262000,856],[1708314263000,638],[1708314264000,748],[1708314265000,858],[1708314266000,634],[1708314267000,744],[1708314268000,854],[1708314269000,646],[1708314270000,756],[1708314271000,866],[1708314272000,651],[1708314273000,761],[1708314274000,871],[1708314275000,681],[1708314276000,791],[1708314277000,789],[1708314278000,687],[1708314279000,797],[1708314280000,595],[1708314281000,705],[1708314282000,815],[1708314283000,581],[1708314284000,691],[1708314285000,801],[1708314286000,607],[1708314287000,717],[1708314288000,827],[1708314289000,629],[1708314290000,739],[1708314291000,849],[1708314292000,637],[1708314293000,747],[1708314294000,857],[1708314295000,614],[1708314296000,614],[1708314297000,614],[1708314298000,614],[1708314299000,614],[1708314300000,614],[1708314301000,614],[1708314302000,614],[1708314303000,614],[1708314304000,614],[1708314305000,614],[1708314306000,614],[1708314307000,614],[1708314308000,614],[1708314309000,614],[1708314310000,614],[1708314311000,614],[1708314312000,614],[1708314313000,614],[1708314314000,614],[1708314315000,614],[1708314316000,614],[1708314317000,614],[1708314318000,614],[1708314319000,614],[1708314320000,614],[1708314321000,614],[1708314322000,614],[1708314323000,614],[1708314324000,614],[1708314325000,614],[1708314326000,614],[1708314327000,614],[1708314328000,614],[1708314329000,614],[1708314330000,614],[1708314331000,614],[1708314332000,614],[1708314333000,614],[1708314334000,614],[1708314335000,614],[1708314336000,614],[1708314337000,614],[1708314338000,614],[1708314339000,614],[1708314340000,593],[1708314341000,551],[1708314342000,510],[1708314343000,440],[1708314344000,357],[1708314345000,334],[1708314346000,332],[1708314347000,318],[1708314348000,305],[1708314349000,224],[1708314350000,90]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708314051000,0],[1708314052000,0],[1708314053000,0],[1708314054000,0],[1708314055000,1],[1708314056000,2],[1708314057000,4],[1708314058000,6],[1708314059000,7],[1708314060000,9],[1708314061000,11],[1708314062000,13],[1708314063000,15],[1708314064000,16],[1708314065000,19],[1708314066000,20],[1708314067000,22],[1708314068000,24],[1708314069000,25],[1708314070000,28],[1708314071000,29],[1708314072000,31],[1708314073000,33],[1708314074000,35],[1708314075000,37],[1708314076000,38],[1708314077000,40],[1708314078000,42],[1708314079000,44],[1708314080000,46],[1708314081000,47],[1708314082000,50],[1708314083000,51],[1708314084000,53],[1708314085000,55],[1708314086000,56],[1708314087000,59],[1708314088000,60],[1708314089000,62],[1708314090000,64],[1708314091000,67],[1708314092000,69],[1708314093000,70],[1708314094000,72],[1708314095000,75],[1708314096000,75],[1708314097000,78],[1708314098000,80],[1708314099000,81],[1708314100000,82],[1708314101000,85],[1708314102000,87],[1708314103000,89],[1708314104000,89],[1708314105000,93],[1708314106000,93],[1708314107000,95],[1708314108000,97],[1708314109000,98],[1708314110000,101],[1708314111000,102],[1708314112000,104],[1708314113000,106],[1708314114000,108],[1708314115000,110],[1708314116000,111],[1708314117000,114],[1708314118000,115],[1708314119000,118],[1708314120000,119],[1708314121000,120],[1708314122000,123],[1708314123000,124],[1708314124000,127],[1708314125000,129],[1708314126000,130],[1708314127000,133],[1708314128000,134],[1708314129000,136],[1708314130000,138],[1708314131000,140],[1708314132000,141],[1708314133000,143],[1708314134000,144],[1708314135000,147],[1708314136000,148],[1708314137000,151],[1708314138000,152],[1708314139000,153],[1708314140000,155],[1708314141000,157],[1708314142000,160],[1708314143000,162],[1708314144000,163],[1708314145000,203],[1708314146000,204],[1708314147000,196],[1708314148000,217],[1708314149000,219],[1708314150000,214],[1708314151000,217],[1708314152000,206],[1708314153000,204],[1708314154000,234],[1708314155000,246],[1708314156000,268],[1708314157000,316],[1708314158000,347],[1708314159000,366],[1708314160000,388],[1708314161000,429],[1708314162000,477],[1708314163000,503],[1708314164000,516],[1708314165000,551],[1708314166000,554],[1708314167000,575],[1708314168000,593],[1708314169000,625],[1708314170000,641],[1708314171000,669],[1708314172000,722],[1708314173000,771],[1708314174000,845],[1708314175000,912],[1708314176000,958],[1708314177000,1023],[1708314178000,1080],[1708314179000,1136],[1708314180000,1205],[1708314181000,1264],[1708314182000,1327],[1708314183000,1113],[1708314184000,1196],[1708314185000,1276],[1708314186000,1364],[1708314187000,1113],[1708314188000,1220],[1708314189000,1321],[1708314190000,1072],[1708314191000,1200],[1708314192000,1305],[1708314193000,1000],[1708314194000,1148],[1708314195000,1282],[1708314196000,944],[1708314197000,1103],[1708314198000,1257],[1708314199000,929],[1708314200000,1072],[1708314201000,1221],[1708314202000,942],[1708314203000,1087],[1708314204000,1230],[1708314205000,929],[1708314206000,1080],[1708314207000,1240],[1708314208000,968],[1708314209000,1122],[1708314210000,1263],[1708314211000,971],[1708314212000,1125],[1708314213000,1277],[1708314214000,970],[1708314215000,1105],[1708314216000,1255],[1708314217000,934],[1708314218000,1087],[1708314219000,1232],[1708314220000,952],[1708314221000,1108],[1708314222000,1260],[1708314223000,960],[1708314224000,1139],[1708314225000,1293],[1708314226000,1026],[1708314227000,1189],[1708314228000,908],[1708314229000,1039],[1708314230000,1190],[1708314231000,860],[1708314232000,1022],[1708314233000,1167],[1708314234000,902],[1708314235000,1040],[1708314236000,1184],[1708314237000,898],[1708314238000,1049],[1708314239000,1205],[1708314240000,945],[1708314241000,1097],[1708314242000,1255],[1708314243000,968],[1708314244000,1105],[1708314245000,1259],[1708314246000,962],[1708314247000,1120],[1708314248000,1276],[1708314249000,1008],[1708314250000,1154],[1708314251000,1299],[1708314252000,997],[1708314253000,1135],[1708314254000,853],[1708314255000,998],[1708314256000,1148],[1708314257000,866],[1708314258000,1012],[1708314259000,1156],[1708314260000,885],[1708314261000,1017],[1708314262000,1148],[1708314263000,902],[1708314264000,1034],[1708314265000,1192],[1708314266000,926],[1708314267000,1092],[1708314268000,1242],[1708314269000,960],[1708314270000,1107],[1708314271000,1248],[1708314272000,985],[1708314273000,1131],[1708314274000,1281],[1708314275000,997],[1708314276000,1156],[1708314277000,1167],[1708314278000,1009],[1708314279000,1166],[1708314280000,870],[1708314281000,1012],[1708314282000,1162],[1708314283000,917],[1708314284000,1072],[1708314285000,1208],[1708314286000,899],[1708314287000,1039],[1708314288000,1184],[1708314289000,887],[1708314290000,1029],[1708314291000,1169],[1708314292000,889],[1708314293000,1019],[1708314294000,1155],[1708314295000,871],[1708314296000,793],[1708314297000,793],[1708314298000,793],[1708314299000,793],[1708314300000,793],[1708314301000,793],[1708314302000,793],[1708314303000,793],[1708314304000,793],[1708314305000,793],[1708314306000,793],[1708314307000,793],[1708314308000,793],[1708314309000,793],[1708314310000,793],[1708314311000,793],[1708314312000,793],[1708314313000,793],[1708314314000,793],[1708314315000,793],[1708314316000,793],[1708314317000,793],[1708314318000,793],[1708314319000,793],[1708314320000,793],[1708314321000,793],[1708314322000,793],[1708314323000,793],[1708314324000,793],[1708314325000,793],[1708314326000,793],[1708314327000,793],[1708314328000,793],[1708314329000,793],[1708314330000,793],[1708314331000,793],[1708314332000,793],[1708314333000,793],[1708314334000,793],[1708314335000,793],[1708314336000,793],[1708314337000,793],[1708314338000,793],[1708314339000,792],[1708314340000,760],[1708314341000,723],[1708314342000,656],[1708314343000,570],[1708314344000,474],[1708314345000,442],[1708314346000,440],[1708314347000,422],[1708314348000,401],[1708314349000,290],[1708314350000,115]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708314051000,0],[1708314052000,0],[1708314053000,0],[1708314054000,0],[1708314055000,1],[1708314056000,2],[1708314057000,1],[1708314058000,1],[1708314059000,1],[1708314060000,1],[1708314061000,2],[1708314062000,1],[1708314063000,2],[1708314064000,2],[1708314065000,1],[1708314066000,2],[1708314067000,2],[1708314068000,2],[1708314069000,2],[1708314070000,2],[1708314071000,2],[1708314072000,2],[1708314073000,3],[1708314074000,2],[1708314075000,3],[1708314076000,2],[1708314077000,3],[1708314078000,2],[1708314079000,3],[1708314080000,3],[1708314081000,3],[1708314082000,3],[1708314083000,3],[1708314084000,3],[1708314085000,3],[1708314086000,4],[1708314087000,3],[1708314088000,3],[1708314089000,4],[1708314090000,3],[1708314091000,4],[1708314092000,4],[1708314093000,4],[1708314094000,4],[1708314095000,4],[1708314096000,4],[1708314097000,4],[1708314098000,4],[1708314099000,4],[1708314100000,4],[1708314101000,5],[1708314102000,4],[1708314103000,5],[1708314104000,5],[1708314105000,4],[1708314106000,5],[1708314107000,5],[1708314108000,5],[1708314109000,5],[1708314110000,5],[1708314111000,5],[1708314112000,5],[1708314113000,6],[1708314114000,5],[1708314115000,6],[1708314116000,5],[1708314117000,6],[1708314118000,5],[1708314119000,6],[1708314120000,6],[1708314121000,6],[1708314122000,6],[1708314123000,6],[1708314124000,6],[1708314125000,6],[1708314126000,7],[1708314127000,6],[1708314128000,6],[1708314129000,7],[1708314130000,6],[1708314131000,7],[1708314132000,7],[1708314133000,7],[1708314134000,7],[1708314135000,7],[1708314136000,7],[1708314137000,7],[1708314138000,7],[1708314139000,7],[1708314140000,7],[1708314141000,8],[1708314142000,7],[1708314143000,8],[1708314144000,8],[1708314145000,9],[1708314146000,10],[1708314147000,9],[1708314148000,9],[1708314149000,10],[1708314150000,10],[1708314151000,10],[1708314152000,9],[1708314153000,10],[1708314154000,9],[1708314155000,12],[1708314156000,12],[1708314157000,13],[1708314158000,14],[1708314159000,15],[1708314160000,16],[1708314161000,16],[1708314162000,19],[1708314163000,20],[1708314164000,21],[1708314165000,20],[1708314166000,21],[1708314167000,22],[1708314168000,23],[1708314169000,24],[1708314170000,24],[1708314171000,25],[1708314172000,27],[1708314173000,30],[1708314174000,33],[1708314175000,35],[1708314176000,35],[1708314177000,40],[1708314178000,43],[1708314179000,45],[1708314180000,49],[1708314181000,50],[1708314182000,52],[1708314183000,43],[1708314184000,46],[1708314185000,52],[1708314186000,58],[1708314187000,49],[1708314188000,53],[1708314189000,60],[1708314190000,52],[1708314191000,57],[1708314192000,60],[1708314193000,53],[1708314194000,58],[1708314195000,66],[1708314196000,55],[1708314197000,63],[1708314198000,69],[1708314199000,56],[1708314200000,61],[1708314201000,66],[1708314202000,50],[1708314203000,58],[1708314204000,67],[1708314205000,55],[1708314206000,64],[1708314207000,72],[1708314208000,59],[1708314209000,68],[1708314210000,77],[1708314211000,54],[1708314212000,64],[1708314213000,71],[1708314214000,55],[1708314215000,65],[1708314216000,75],[1708314217000,65],[1708314218000,75],[1708314219000,85],[1708314220000,63],[1708314221000,73],[1708314222000,83],[1708314223000,66],[1708314224000,76],[1708314225000,86],[1708314226000,67],[1708314227000,77],[1708314228000,49],[1708314229000,59],[1708314230000,69],[1708314231000,55],[1708314232000,65],[1708314233000,75],[1708314234000,50],[1708314235000,60],[1708314236000,70],[1708314237000,60],[1708314238000,70],[1708314239000,80],[1708314240000,57],[1708314241000,67],[1708314242000,77],[1708314243000,61],[1708314244000,71],[1708314245000,81],[1708314246000,58],[1708314247000,68],[1708314248000,78],[1708314249000,67],[1708314250000,77],[1708314251000,87],[1708314252000,73],[1708314253000,83],[1708314254000,57],[1708314255000,67],[1708314256000,77],[1708314257000,55],[1708314258000,65],[1708314259000,75],[1708314260000,58],[1708314261000,68],[1708314262000,78],[1708314263000,62],[1708314264000,72],[1708314265000,82],[1708314266000,59],[1708314267000,69],[1708314268000,79],[1708314269000,58],[1708314270000,68],[1708314271000,78],[1708314272000,58],[1708314273000,68],[1708314274000,78],[1708314275000,58],[1708314276000,68],[1708314277000,65],[1708314278000,60],[1708314279000,70],[1708314280000,52],[1708314281000,62],[1708314282000,72],[1708314283000,53],[1708314284000,63],[1708314285000,73],[1708314286000,56],[1708314287000,66],[1708314288000,76],[1708314289000,60],[1708314290000,70],[1708314291000,80],[1708314292000,60],[1708314293000,70],[1708314294000,80],[1708314295000,56],[1708314296000,56],[1708314297000,56],[1708314298000,56],[1708314299000,56],[1708314300000,56],[1708314301000,56],[1708314302000,56],[1708314303000,56],[1708314304000,56],[1708314305000,56],[1708314306000,56],[1708314307000,56],[1708314308000,56],[1708314309000,56],[1708314310000,56],[1708314311000,56],[1708314312000,56],[1708314313000,56],[1708314314000,56],[1708314315000,56],[1708314316000,56],[1708314317000,54],[1708314318000,53],[1708314319000,52],[1708314320000,51],[1708314321000,48],[1708314322000,46],[1708314323000,43],[1708314324000,40],[1708314325000,37],[1708314326000,33],[1708314327000,30],[1708314328000,24],[1708314329000,23],[1708314330000,19],[1708314331000,19],[1708314332000,17],[1708314333000,15],[1708314334000,12],[1708314335000,8],[1708314336000,4],[1708314337000,1],[1708314338000,0],[1708314339000,0],[1708314340000,0],[1708314341000,0],[1708314342000,0],[1708314343000,0],[1708314344000,0],[1708314345000,0],[1708314346000,0],[1708314347000,0],[1708314348000,0],[1708314349000,0],[1708314350000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708314051000,0],[1708314052000,0],[1708314053000,0],[1708314054000,5],[1708314055000,5],[1708314056000,0],[1708314057000,0],[1708314058000,0],[1708314059000,0],[1708314060000,0],[1708314061000,0],[1708314062000,0],[1708314063000,0],[1708314064000,0],[1708314065000,0],[1708314066000,0],[1708314067000,0],[1708314068000,0],[1708314069000,0],[1708314070000,0],[1708314071000,0],[1708314072000,0],[1708314073000,0],[1708314074000,0],[1708314075000,0],[1708314076000,0],[1708314077000,0],[1708314078000,0],[1708314079000,0],[1708314080000,0],[1708314081000,0],[1708314082000,0],[1708314083000,0],[1708314084000,0],[1708314085000,0],[1708314086000,0],[1708314087000,0],[1708314088000,0],[1708314089000,0],[1708314090000,0],[1708314091000,0],[1708314092000,0],[1708314093000,0],[1708314094000,0],[1708314095000,0],[1708314096000,0],[1708314097000,0],[1708314098000,0],[1708314099000,0],[1708314100000,0],[1708314101000,0],[1708314102000,0],[1708314103000,0],[1708314104000,0],[1708314105000,0],[1708314106000,0],[1708314107000,0],[1708314108000,0],[1708314109000,0],[1708314110000,0],[1708314111000,0],[1708314112000,0],[1708314113000,0],[1708314114000,0],[1708314115000,0],[1708314116000,0],[1708314117000,0],[1708314118000,0],[1708314119000,0],[1708314120000,0],[1708314121000,0],[1708314122000,0],[1708314123000,0],[1708314124000,0],[1708314125000,0],[1708314126000,0],[1708314127000,0],[1708314128000,0],[1708314129000,0],[1708314130000,0],[1708314131000,0],[1708314132000,0],[1708314133000,0],[1708314134000,0],[1708314135000,0],[1708314136000,0],[1708314137000,0],[1708314138000,0],[1708314139000,0],[1708314140000,0],[1708314141000,0],[1708314142000,0],[1708314143000,0],[1708314144000,0],[1708314145000,0],[1708314146000,0],[1708314147000,0],[1708314148000,0],[1708314149000,0],[1708314150000,0],[1708314151000,0],[1708314152000,0],[1708314153000,0],[1708314154000,0],[1708314155000,0],[1708314156000,0],[1708314157000,0],[1708314158000,0],[1708314159000,0],[1708314160000,0],[1708314161000,0],[1708314162000,0],[1708314163000,0],[1708314164000,0],[1708314165000,0],[1708314166000,0],[1708314167000,0],[1708314168000,0],[1708314169000,0],[1708314170000,0],[1708314171000,0],[1708314172000,0],[1708314173000,0],[1708314174000,0],[1708314175000,0],[1708314176000,0],[1708314177000,0],[1708314178000,0],[1708314179000,0],[1708314180000,0],[1708314181000,0],[1708314182000,0],[1708314183000,0],[1708314184000,0],[1708314185000,0],[1708314186000,0],[1708314187000,0],[1708314188000,0],[1708314189000,0],[1708314190000,0],[1708314191000,0],[1708314192000,0],[1708314193000,0],[1708314194000,0],[1708314195000,0],[1708314196000,0],[1708314197000,0],[1708314198000,0],[1708314199000,0],[1708314200000,0],[1708314201000,0],[1708314202000,0],[1708314203000,0],[1708314204000,0],[1708314205000,0],[1708314206000,0],[1708314207000,0],[1708314208000,0],[1708314209000,0],[1708314210000,0],[1708314211000,0],[1708314212000,0],[1708314213000,0],[1708314214000,0],[1708314215000,0],[1708314216000,0],[1708314217000,0],[1708314218000,0],[1708314219000,0],[1708314220000,0],[1708314221000,0],[1708314222000,0],[1708314223000,0],[1708314224000,0],[1708314225000,0],[1708314226000,0],[1708314227000,0],[1708314228000,0],[1708314229000,0],[1708314230000,0],[1708314231000,0],[1708314232000,0],[1708314233000,0],[1708314234000,0],[1708314235000,0],[1708314236000,0],[1708314237000,0],[1708314238000,0],[1708314239000,0],[1708314240000,0],[1708314241000,0],[1708314242000,0],[1708314243000,0],[1708314244000,0],[1708314245000,0],[1708314246000,0],[1708314247000,0],[1708314248000,0],[1708314249000,0],[1708314250000,0],[1708314251000,0],[1708314252000,0],[1708314253000,0],[1708314254000,0],[1708314255000,0],[1708314256000,0],[1708314257000,0],[1708314258000,0],[1708314259000,0],[1708314260000,0],[1708314261000,0],[1708314262000,0],[1708314263000,0],[1708314264000,0],[1708314265000,0],[1708314266000,0],[1708314267000,0],[1708314268000,0],[1708314269000,0],[1708314270000,0],[1708314271000,0],[1708314272000,0],[1708314273000,0],[1708314274000,0],[1708314275000,0],[1708314276000,0],[1708314277000,0],[1708314278000,0],[1708314279000,0],[1708314280000,0],[1708314281000,0],[1708314282000,0],[1708314283000,0],[1708314284000,0],[1708314285000,0],[1708314286000,0],[1708314287000,0],[1708314288000,0],[1708314289000,0],[1708314290000,0],[1708314291000,0],[1708314292000,0],[1708314293000,0],[1708314294000,0],[1708314295000,0],[1708314296000,0],[1708314297000,0],[1708314298000,0],[1708314299000,0],[1708314300000,0],[1708314301000,0],[1708314302000,0],[1708314303000,0],[1708314304000,0],[1708314305000,0],[1708314306000,0],[1708314307000,0],[1708314308000,0],[1708314309000,0],[1708314310000,0],[1708314311000,0],[1708314312000,0],[1708314313000,0],[1708314314000,0],[1708314315000,0],[1708314316000,0],[1708314317000,0],[1708314318000,0],[1708314319000,0],[1708314320000,0],[1708314321000,0],[1708314322000,0],[1708314323000,0],[1708314324000,0],[1708314325000,0],[1708314326000,0],[1708314327000,0],[1708314328000,0],[1708314329000,0],[1708314330000,0],[1708314331000,0],[1708314332000,0],[1708314333000,0],[1708314334000,0],[1708314335000,0],[1708314336000,0],[1708314337000,0],[1708314338000,0],[1708314339000,0],[1708314340000,0],[1708314341000,0],[1708314342000,0],[1708314343000,0],[1708314344000,0],[1708314345000,0],[1708314346000,0],[1708314347000,0],[1708314348000,0],[1708314349000,0],[1708314350000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708314051000,0],[1708314052000,0],[1708314053000,0],[1708314054000,1],[1708314055000,0],[1708314056000,0],[1708314057000,0],[1708314058000,0],[1708314059000,0],[1708314060000,0],[1708314061000,0],[1708314062000,0],[1708314063000,0],[1708314064000,0],[1708314065000,0],[1708314066000,0],[1708314067000,0],[1708314068000,0],[1708314069000,0],[1708314070000,0],[1708314071000,0],[1708314072000,0],[1708314073000,0],[1708314074000,0],[1708314075000,0],[1708314076000,0],[1708314077000,0],[1708314078000,0],[1708314079000,0],[1708314080000,0],[1708314081000,0],[1708314082000,0],[1708314083000,0],[1708314084000,0],[1708314085000,0],[1708314086000,0],[1708314087000,0],[1708314088000,0],[1708314089000,0],[1708314090000,0],[1708314091000,0],[1708314092000,0],[1708314093000,0],[1708314094000,0],[1708314095000,0],[1708314096000,0],[1708314097000,0],[1708314098000,0],[1708314099000,0],[1708314100000,0],[1708314101000,0],[1708314102000,0],[1708314103000,0],[1708314104000,0],[1708314105000,0],[1708314106000,0],[1708314107000,0],[1708314108000,0],[1708314109000,0],[1708314110000,0],[1708314111000,0],[1708314112000,0],[1708314113000,0],[1708314114000,0],[1708314115000,0],[1708314116000,0],[1708314117000,0],[1708314118000,0],[1708314119000,0],[1708314120000,0],[1708314121000,0],[1708314122000,0],[1708314123000,0],[1708314124000,0],[1708314125000,0],[1708314126000,0],[1708314127000,0],[1708314128000,0],[1708314129000,0],[1708314130000,0],[1708314131000,0],[1708314132000,0],[1708314133000,0],[1708314134000,0],[1708314135000,0],[1708314136000,0],[1708314137000,0],[1708314138000,0],[1708314139000,0],[1708314140000,0],[1708314141000,0],[1708314142000,0],[1708314143000,0],[1708314144000,0],[1708314145000,0],[1708314146000,0],[1708314147000,0],[1708314148000,0],[1708314149000,0],[1708314150000,0],[1708314151000,0],[1708314152000,0],[1708314153000,0],[1708314154000,0],[1708314155000,0],[1708314156000,0],[1708314157000,0],[1708314158000,0],[1708314159000,0],[1708314160000,0],[1708314161000,0],[1708314162000,0],[1708314163000,0],[1708314164000,0],[1708314165000,0],[1708314166000,0],[1708314167000,0],[1708314168000,0],[1708314169000,0],[1708314170000,0],[1708314171000,0],[1708314172000,0],[1708314173000,0],[1708314174000,0],[1708314175000,0],[1708314176000,0],[1708314177000,0],[1708314178000,0],[1708314179000,0],[1708314180000,0],[1708314181000,0],[1708314182000,0],[1708314183000,0],[1708314184000,0],[1708314185000,0],[1708314186000,0],[1708314187000,0],[1708314188000,0],[1708314189000,0],[1708314190000,0],[1708314191000,0],[1708314192000,0],[1708314193000,0],[1708314194000,0],[1708314195000,0],[1708314196000,0],[1708314197000,0],[1708314198000,0],[1708314199000,0],[1708314200000,0],[1708314201000,0],[1708314202000,0],[1708314203000,0],[1708314204000,0],[1708314205000,0],[1708314206000,0],[1708314207000,0],[1708314208000,0],[1708314209000,0],[1708314210000,0],[1708314211000,0],[1708314212000,0],[1708314213000,0],[1708314214000,0],[1708314215000,0],[1708314216000,0],[1708314217000,0],[1708314218000,0],[1708314219000,0],[1708314220000,0],[1708314221000,0],[1708314222000,0],[1708314223000,0],[1708314224000,0],[1708314225000,0],[1708314226000,0],[1708314227000,0],[1708314228000,0],[1708314229000,0],[1708314230000,0],[1708314231000,0],[1708314232000,0],[1708314233000,0],[1708314234000,0],[1708314235000,0],[1708314236000,0],[1708314237000,0],[1708314238000,0],[1708314239000,0],[1708314240000,0],[1708314241000,0],[1708314242000,0],[1708314243000,0],[1708314244000,0],[1708314245000,0],[1708314246000,0],[1708314247000,0],[1708314248000,0],[1708314249000,0],[1708314250000,0],[1708314251000,0],[1708314252000,0],[1708314253000,0],[1708314254000,0],[1708314255000,0],[1708314256000,0],[1708314257000,0],[1708314258000,0],[1708314259000,0],[1708314260000,0],[1708314261000,0],[1708314262000,0],[1708314263000,0],[1708314264000,0],[1708314265000,0],[1708314266000,0],[1708314267000,0],[1708314268000,0],[1708314269000,0],[1708314270000,0],[1708314271000,0],[1708314272000,0],[1708314273000,0],[1708314274000,0],[1708314275000,0],[1708314276000,0],[1708314277000,0],[1708314278000,0],[1708314279000,0],[1708314280000,0],[1708314281000,0],[1708314282000,0],[1708314283000,0],[1708314284000,0],[1708314285000,0],[1708314286000,0],[1708314287000,0],[1708314288000,0],[1708314289000,0],[1708314290000,0],[1708314291000,0],[1708314292000,0],[1708314293000,0],[1708314294000,0],[1708314295000,0],[1708314296000,0],[1708314297000,0],[1708314298000,0],[1708314299000,0],[1708314300000,0],[1708314301000,0],[1708314302000,0],[1708314303000,0],[1708314304000,0],[1708314305000,0],[1708314306000,0],[1708314307000,0],[1708314308000,0],[1708314309000,0],[1708314310000,0],[1708314311000,0],[1708314312000,0],[1708314313000,0],[1708314314000,0],[1708314315000,0],[1708314316000,0],[1708314317000,0],[1708314318000,0],[1708314319000,0],[1708314320000,0],[1708314321000,0],[1708314322000,0],[1708314323000,0],[1708314324000,0],[1708314325000,0],[1708314326000,0],[1708314327000,0],[1708314328000,0],[1708314329000,0],[1708314330000,0],[1708314331000,0],[1708314332000,0],[1708314333000,0],[1708314334000,0],[1708314335000,0],[1708314336000,0],[1708314337000,0],[1708314338000,0],[1708314339000,0],[1708314340000,0],[1708314341000,0],[1708314342000,0],[1708314343000,0],[1708314344000,0],[1708314345000,0],[1708314346000,0],[1708314347000,0],[1708314348000,0],[1708314349000,0],[1708314350000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708314051000,0],[1708314052000,0],[1708314053000,1],[1708314054000,0],[1708314055000,0],[1708314056000,0],[1708314057000,0],[1708314058000,0],[1708314059000,0],[1708314060000,0],[1708314061000,0],[1708314062000,0],[1708314063000,0],[1708314064000,0],[1708314065000,0],[1708314066000,0],[1708314067000,0],[1708314068000,0],[1708314069000,0],[1708314070000,0],[1708314071000,0],[1708314072000,0],[1708314073000,0],[1708314074000,0],[1708314075000,0],[1708314076000,0],[1708314077000,0],[1708314078000,0],[1708314079000,0],[1708314080000,0],[1708314081000,0],[1708314082000,0],[1708314083000,0],[1708314084000,0],[1708314085000,0],[1708314086000,0],[1708314087000,0],[1708314088000,0],[1708314089000,0],[1708314090000,0],[1708314091000,0],[1708314092000,0],[1708314093000,0],[1708314094000,0],[1708314095000,0],[1708314096000,0],[1708314097000,0],[1708314098000,0],[1708314099000,0],[1708314100000,0],[1708314101000,0],[1708314102000,0],[1708314103000,0],[1708314104000,0],[1708314105000,0],[1708314106000,0],[1708314107000,0],[1708314108000,0],[1708314109000,0],[1708314110000,0],[1708314111000,0],[1708314112000,0],[1708314113000,0],[1708314114000,0],[1708314115000,0],[1708314116000,0],[1708314117000,0],[1708314118000,0],[1708314119000,0],[1708314120000,0],[1708314121000,0],[1708314122000,0],[1708314123000,0],[1708314124000,0],[1708314125000,0],[1708314126000,0],[1708314127000,0],[1708314128000,0],[1708314129000,0],[1708314130000,0],[1708314131000,0],[1708314132000,0],[1708314133000,0],[1708314134000,0],[1708314135000,0],[1708314136000,0],[1708314137000,0],[1708314138000,0],[1708314139000,0],[1708314140000,0],[1708314141000,0],[1708314142000,0],[1708314143000,0],[1708314144000,0],[1708314145000,0],[1708314146000,0],[1708314147000,0],[1708314148000,0],[1708314149000,0],[1708314150000,0],[1708314151000,0],[1708314152000,0],[1708314153000,0],[1708314154000,0],[1708314155000,0],[1708314156000,0],[1708314157000,0],[1708314158000,0],[1708314159000,0],[1708314160000,0],[1708314161000,0],[1708314162000,0],[1708314163000,0],[1708314164000,0],[1708314165000,0],[1708314166000,0],[1708314167000,0],[1708314168000,0],[1708314169000,0],[1708314170000,0],[1708314171000,0],[1708314172000,0],[1708314173000,0],[1708314174000,0],[1708314175000,0],[1708314176000,0],[1708314177000,0],[1708314178000,0],[1708314179000,0],[1708314180000,0],[1708314181000,0],[1708314182000,0],[1708314183000,0],[1708314184000,0],[1708314185000,0],[1708314186000,0],[1708314187000,0],[1708314188000,0],[1708314189000,0],[1708314190000,0],[1708314191000,0],[1708314192000,0],[1708314193000,0],[1708314194000,0],[1708314195000,0],[1708314196000,0],[1708314197000,0],[1708314198000,0],[1708314199000,0],[1708314200000,0],[1708314201000,0],[1708314202000,0],[1708314203000,0],[1708314204000,0],[1708314205000,0],[1708314206000,0],[1708314207000,0],[1708314208000,0],[1708314209000,0],[1708314210000,0],[1708314211000,0],[1708314212000,0],[1708314213000,0],[1708314214000,0],[1708314215000,0],[1708314216000,0],[1708314217000,0],[1708314218000,0],[1708314219000,0],[1708314220000,0],[1708314221000,0],[1708314222000,0],[1708314223000,0],[1708314224000,0],[1708314225000,0],[1708314226000,0],[1708314227000,0],[1708314228000,0],[1708314229000,0],[1708314230000,0],[1708314231000,0],[1708314232000,0],[1708314233000,0],[1708314234000,0],[1708314235000,0],[1708314236000,0],[1708314237000,0],[1708314238000,0],[1708314239000,0],[1708314240000,0],[1708314241000,0],[1708314242000,0],[1708314243000,0],[1708314244000,0],[1708314245000,0],[1708314246000,0],[1708314247000,0],[1708314248000,0],[1708314249000,0],[1708314250000,0],[1708314251000,0],[1708314252000,0],[1708314253000,0],[1708314254000,0],[1708314255000,0],[1708314256000,0],[1708314257000,0],[1708314258000,0],[1708314259000,0],[1708314260000,0],[1708314261000,0],[1708314262000,0],[1708314263000,0],[1708314264000,0],[1708314265000,0],[1708314266000,0],[1708314267000,0],[1708314268000,0],[1708314269000,0],[1708314270000,0],[1708314271000,0],[1708314272000,0],[1708314273000,0],[1708314274000,0],[1708314275000,0],[1708314276000,0],[1708314277000,0],[1708314278000,0],[1708314279000,0],[1708314280000,0],[1708314281000,0],[1708314282000,0],[1708314283000,0],[1708314284000,0],[1708314285000,0],[1708314286000,0],[1708314287000,0],[1708314288000,0],[1708314289000,0],[1708314290000,0],[1708314291000,0],[1708314292000,0],[1708314293000,0],[1708314294000,0],[1708314295000,0],[1708314296000,0],[1708314297000,0],[1708314298000,0],[1708314299000,0],[1708314300000,0],[1708314301000,0],[1708314302000,0],[1708314303000,0],[1708314304000,0],[1708314305000,0],[1708314306000,0],[1708314307000,0],[1708314308000,0],[1708314309000,0],[1708314310000,0],[1708314311000,0],[1708314312000,0],[1708314313000,0],[1708314314000,0],[1708314315000,0],[1708314316000,0],[1708314317000,0],[1708314318000,0],[1708314319000,0],[1708314320000,0],[1708314321000,0],[1708314322000,0],[1708314323000,0],[1708314324000,0],[1708314325000,0],[1708314326000,0],[1708314327000,0],[1708314328000,0],[1708314329000,0],[1708314330000,0],[1708314331000,0],[1708314332000,0],[1708314333000,0],[1708314334000,0],[1708314335000,0],[1708314336000,0],[1708314337000,0],[1708314338000,0],[1708314339000,0],[1708314340000,0],[1708314341000,0],[1708314342000,0],[1708314343000,0],[1708314344000,0],[1708314345000,0],[1708314346000,0],[1708314347000,0],[1708314348000,0],[1708314349000,0],[1708314350000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708314051000,0],[1708314052000,25],[1708314053000,25],[1708314054000,0],[1708314055000,0],[1708314056000,0],[1708314057000,0],[1708314058000,0],[1708314059000,0],[1708314060000,0],[1708314061000,0],[1708314062000,0],[1708314063000,0],[1708314064000,0],[1708314065000,0],[1708314066000,0],[1708314067000,0],[1708314068000,0],[1708314069000,0],[1708314070000,0],[1708314071000,0],[1708314072000,0],[1708314073000,0],[1708314074000,0],[1708314075000,0],[1708314076000,0],[1708314077000,0],[1708314078000,0],[1708314079000,0],[1708314080000,0],[1708314081000,0],[1708314082000,0],[1708314083000,0],[1708314084000,0],[1708314085000,0],[1708314086000,0],[1708314087000,0],[1708314088000,0],[1708314089000,0],[1708314090000,0],[1708314091000,0],[1708314092000,0],[1708314093000,0],[1708314094000,0],[1708314095000,0],[1708314096000,0],[1708314097000,0],[1708314098000,0],[1708314099000,0],[1708314100000,0],[1708314101000,0],[1708314102000,0],[1708314103000,0],[1708314104000,0],[1708314105000,0],[1708314106000,0],[1708314107000,0],[1708314108000,0],[1708314109000,0],[1708314110000,0],[1708314111000,0],[1708314112000,0],[1708314113000,0],[1708314114000,0],[1708314115000,0],[1708314116000,0],[1708314117000,0],[1708314118000,0],[1708314119000,0],[1708314120000,0],[1708314121000,0],[1708314122000,0],[1708314123000,0],[1708314124000,0],[1708314125000,0],[1708314126000,0],[1708314127000,0],[1708314128000,0],[1708314129000,0],[1708314130000,0],[1708314131000,0],[1708314132000,0],[1708314133000,0],[1708314134000,0],[1708314135000,0],[1708314136000,0],[1708314137000,0],[1708314138000,0],[1708314139000,0],[1708314140000,0],[1708314141000,0],[1708314142000,0],[1708314143000,0],[1708314144000,0],[1708314145000,0],[1708314146000,0],[1708314147000,0],[1708314148000,0],[1708314149000,0],[1708314150000,0],[1708314151000,0],[1708314152000,0],[1708314153000,0],[1708314154000,0],[1708314155000,0],[1708314156000,0],[1708314157000,0],[1708314158000,0],[1708314159000,0],[1708314160000,0],[1708314161000,0],[1708314162000,0],[1708314163000,0],[1708314164000,0],[1708314165000,0],[1708314166000,0],[1708314167000,0],[1708314168000,0],[1708314169000,0],[1708314170000,0],[1708314171000,0],[1708314172000,0],[1708314173000,0],[1708314174000,0],[1708314175000,0],[1708314176000,0],[1708314177000,0],[1708314178000,0],[1708314179000,0],[1708314180000,0],[1708314181000,0],[1708314182000,0],[1708314183000,0],[1708314184000,0],[1708314185000,0],[1708314186000,0],[1708314187000,0],[1708314188000,0],[1708314189000,0],[1708314190000,0],[1708314191000,0],[1708314192000,0],[1708314193000,0],[1708314194000,0],[1708314195000,0],[1708314196000,0],[1708314197000,0],[1708314198000,0],[1708314199000,0],[1708314200000,0],[1708314201000,0],[1708314202000,0],[1708314203000,0],[1708314204000,0],[1708314205000,0],[1708314206000,0],[1708314207000,0],[1708314208000,0],[1708314209000,0],[1708314210000,0],[1708314211000,0],[1708314212000,0],[1708314213000,0],[1708314214000,0],[1708314215000,0],[1708314216000,0],[1708314217000,0],[1708314218000,0],[1708314219000,0],[1708314220000,0],[1708314221000,0],[1708314222000,0],[1708314223000,0],[1708314224000,0],[1708314225000,0],[1708314226000,0],[1708314227000,0],[1708314228000,0],[1708314229000,0],[1708314230000,0],[1708314231000,0],[1708314232000,0],[1708314233000,0],[1708314234000,0],[1708314235000,0],[1708314236000,0],[1708314237000,0],[1708314238000,0],[1708314239000,0],[1708314240000,0],[1708314241000,0],[1708314242000,0],[1708314243000,0],[1708314244000,0],[1708314245000,0],[1708314246000,0],[1708314247000,0],[1708314248000,0],[1708314249000,0],[1708314250000,0],[1708314251000,0],[1708314252000,0],[1708314253000,0],[1708314254000,0],[1708314255000,0],[1708314256000,0],[1708314257000,0],[1708314258000,0],[1708314259000,0],[1708314260000,0],[1708314261000,0],[1708314262000,0],[1708314263000,0],[1708314264000,0],[1708314265000,0],[1708314266000,0],[1708314267000,0],[1708314268000,0],[1708314269000,0],[1708314270000,0],[1708314271000,0],[1708314272000,0],[1708314273000,0],[1708314274000,0],[1708314275000,0],[1708314276000,0],[1708314277000,0],[1708314278000,0],[1708314279000,0],[1708314280000,0],[1708314281000,0],[1708314282000,0],[1708314283000,0],[1708314284000,0],[1708314285000,0],[1708314286000,0],[1708314287000,0],[1708314288000,0],[1708314289000,0],[1708314290000,0],[1708314291000,0],[1708314292000,0],[1708314293000,0],[1708314294000,0],[1708314295000,0],[1708314296000,0],[1708314297000,0],[1708314298000,0],[1708314299000,0],[1708314300000,0],[1708314301000,0],[1708314302000,0],[1708314303000,0],[1708314304000,0],[1708314305000,0],[1708314306000,0],[1708314307000,0],[1708314308000,0],[1708314309000,0],[1708314310000,0],[1708314311000,0],[1708314312000,0],[1708314313000,0],[1708314314000,0],[1708314315000,0],[1708314316000,0],[1708314317000,0],[1708314318000,0],[1708314319000,0],[1708314320000,0],[1708314321000,0],[1708314322000,0],[1708314323000,0],[1708314324000,0],[1708314325000,0],[1708314326000,0],[1708314327000,0],[1708314328000,0],[1708314329000,0],[1708314330000,0],[1708314331000,0],[1708314332000,0],[1708314333000,0],[1708314334000,0],[1708314335000,0],[1708314336000,0],[1708314337000,0],[1708314338000,0],[1708314339000,0],[1708314340000,0],[1708314341000,0],[1708314342000,0],[1708314343000,0],[1708314344000,0],[1708314345000,0],[1708314346000,0],[1708314347000,0],[1708314348000,0],[1708314349000,0],[1708314350000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708314051000,1],[1708314052000,1],[1708314053000,0],[1708314054000,0],[1708314055000,0],[1708314056000,0],[1708314057000,0],[1708314058000,0],[1708314059000,0],[1708314060000,0],[1708314061000,0],[1708314062000,0],[1708314063000,0],[1708314064000,0],[1708314065000,0],[1708314066000,0],[1708314067000,0],[1708314068000,0],[1708314069000,0],[1708314070000,0],[1708314071000,0],[1708314072000,0],[1708314073000,0],[1708314074000,0],[1708314075000,0],[1708314076000,0],[1708314077000,0],[1708314078000,0],[1708314079000,0],[1708314080000,0],[1708314081000,0],[1708314082000,0],[1708314083000,0],[1708314084000,0],[1708314085000,0],[1708314086000,0],[1708314087000,0],[1708314088000,0],[1708314089000,0],[1708314090000,0],[1708314091000,0],[1708314092000,0],[1708314093000,0],[1708314094000,0],[1708314095000,0],[1708314096000,0],[1708314097000,0],[1708314098000,0],[1708314099000,0],[1708314100000,0],[1708314101000,0],[1708314102000,0],[1708314103000,0],[1708314104000,0],[1708314105000,0],[1708314106000,0],[1708314107000,0],[1708314108000,0],[1708314109000,0],[1708314110000,0],[1708314111000,0],[1708314112000,0],[1708314113000,0],[1708314114000,0],[1708314115000,0],[1708314116000,0],[1708314117000,0],[1708314118000,0],[1708314119000,0],[1708314120000,0],[1708314121000,0],[1708314122000,0],[1708314123000,0],[1708314124000,0],[1708314125000,0],[1708314126000,0],[1708314127000,0],[1708314128000,0],[1708314129000,0],[1708314130000,0],[1708314131000,0],[1708314132000,0],[1708314133000,0],[1708314134000,0],[1708314135000,0],[1708314136000,0],[1708314137000,0],[1708314138000,0],[1708314139000,0],[1708314140000,0],[1708314141000,0],[1708314142000,0],[1708314143000,0],[1708314144000,0],[1708314145000,0],[1708314146000,0],[1708314147000,0],[1708314148000,0],[1708314149000,0],[1708314150000,0],[1708314151000,0],[1708314152000,0],[1708314153000,0],[1708314154000,0],[1708314155000,0],[1708314156000,0],[1708314157000,0],[1708314158000,0],[1708314159000,0],[1708314160000,0],[1708314161000,0],[1708314162000,0],[1708314163000,0],[1708314164000,0],[1708314165000,0],[1708314166000,0],[1708314167000,0],[1708314168000,0],[1708314169000,0],[1708314170000,0],[1708314171000,0],[1708314172000,0],[1708314173000,0],[1708314174000,0],[1708314175000,0],[1708314176000,0],[1708314177000,0],[1708314178000,0],[1708314179000,0],[1708314180000,0],[1708314181000,0],[1708314182000,0],[1708314183000,0],[1708314184000,0],[1708314185000,0],[1708314186000,0],[1708314187000,0],[1708314188000,0],[1708314189000,0],[1708314190000,0],[1708314191000,0],[1708314192000,0],[1708314193000,0],[1708314194000,0],[1708314195000,0],[1708314196000,0],[1708314197000,0],[1708314198000,0],[1708314199000,0],[1708314200000,0],[1708314201000,0],[1708314202000,0],[1708314203000,0],[1708314204000,0],[1708314205000,0],[1708314206000,0],[1708314207000,0],[1708314208000,0],[1708314209000,0],[1708314210000,0],[1708314211000,0],[1708314212000,0],[1708314213000,0],[1708314214000,0],[1708314215000,0],[1708314216000,0],[1708314217000,0],[1708314218000,0],[1708314219000,0],[1708314220000,0],[1708314221000,0],[1708314222000,0],[1708314223000,0],[1708314224000,0],[1708314225000,0],[1708314226000,0],[1708314227000,0],[1708314228000,0],[1708314229000,0],[1708314230000,0],[1708314231000,0],[1708314232000,0],[1708314233000,0],[1708314234000,0],[1708314235000,0],[1708314236000,0],[1708314237000,0],[1708314238000,0],[1708314239000,0],[1708314240000,0],[1708314241000,0],[1708314242000,0],[1708314243000,0],[1708314244000,0],[1708314245000,0],[1708314246000,0],[1708314247000,0],[1708314248000,0],[1708314249000,0],[1708314250000,0],[1708314251000,0],[1708314252000,0],[1708314253000,0],[1708314254000,0],[1708314255000,0],[1708314256000,0],[1708314257000,0],[1708314258000,0],[1708314259000,0],[1708314260000,0],[1708314261000,0],[1708314262000,0],[1708314263000,0],[1708314264000,0],[1708314265000,0],[1708314266000,0],[1708314267000,0],[1708314268000,0],[1708314269000,0],[1708314270000,0],[1708314271000,0],[1708314272000,0],[1708314273000,0],[1708314274000,0],[1708314275000,0],[1708314276000,0],[1708314277000,0],[1708314278000,0],[1708314279000,0],[1708314280000,0],[1708314281000,0],[1708314282000,0],[1708314283000,0],[1708314284000,0],[1708314285000,0],[1708314286000,0],[1708314287000,0],[1708314288000,0],[1708314289000,0],[1708314290000,0],[1708314291000,0],[1708314292000,0],[1708314293000,0],[1708314294000,0],[1708314295000,0],[1708314296000,0],[1708314297000,0],[1708314298000,0],[1708314299000,0],[1708314300000,0],[1708314301000,0],[1708314302000,0],[1708314303000,0],[1708314304000,0],[1708314305000,0],[1708314306000,0],[1708314307000,0],[1708314308000,0],[1708314309000,0],[1708314310000,0],[1708314311000,0],[1708314312000,0],[1708314313000,0],[1708314314000,0],[1708314315000,0],[1708314316000,0],[1708314317000,0],[1708314318000,0],[1708314319000,0],[1708314320000,0],[1708314321000,0],[1708314322000,0],[1708314323000,0],[1708314324000,0],[1708314325000,0],[1708314326000,0],[1708314327000,0],[1708314328000,0],[1708314329000,0],[1708314330000,0],[1708314331000,0],[1708314332000,0],[1708314333000,0],[1708314334000,0],[1708314335000,0],[1708314336000,0],[1708314337000,0],[1708314338000,0],[1708314339000,0],[1708314340000,0],[1708314341000,0],[1708314342000,0],[1708314343000,0],[1708314344000,0],[1708314345000,0],[1708314346000,0],[1708314347000,0],[1708314348000,0],[1708314349000,0],[1708314350000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708314051000,25],[1708314052000,0],[1708314053000,0],[1708314054000,0],[1708314055000,0],[1708314056000,0],[1708314057000,0],[1708314058000,0],[1708314059000,0],[1708314060000,0],[1708314061000,0],[1708314062000,0],[1708314063000,0],[1708314064000,0],[1708314065000,0],[1708314066000,0],[1708314067000,0],[1708314068000,0],[1708314069000,0],[1708314070000,0],[1708314071000,0],[1708314072000,0],[1708314073000,0],[1708314074000,0],[1708314075000,0],[1708314076000,0],[1708314077000,0],[1708314078000,0],[1708314079000,0],[1708314080000,0],[1708314081000,0],[1708314082000,0],[1708314083000,0],[1708314084000,0],[1708314085000,0],[1708314086000,0],[1708314087000,0],[1708314088000,0],[1708314089000,0],[1708314090000,0],[1708314091000,0],[1708314092000,0],[1708314093000,0],[1708314094000,0],[1708314095000,0],[1708314096000,0],[1708314097000,0],[1708314098000,0],[1708314099000,0],[1708314100000,0],[1708314101000,0],[1708314102000,0],[1708314103000,0],[1708314104000,0],[1708314105000,0],[1708314106000,0],[1708314107000,0],[1708314108000,0],[1708314109000,0],[1708314110000,0],[1708314111000,0],[1708314112000,0],[1708314113000,0],[1708314114000,0],[1708314115000,0],[1708314116000,0],[1708314117000,0],[1708314118000,0],[1708314119000,0],[1708314120000,0],[1708314121000,0],[1708314122000,0],[1708314123000,0],[1708314124000,0],[1708314125000,0],[1708314126000,0],[1708314127000,0],[1708314128000,0],[1708314129000,0],[1708314130000,0],[1708314131000,0],[1708314132000,0],[1708314133000,0],[1708314134000,0],[1708314135000,0],[1708314136000,0],[1708314137000,0],[1708314138000,0],[1708314139000,0],[1708314140000,0],[1708314141000,0],[1708314142000,0],[1708314143000,0],[1708314144000,0],[1708314145000,0],[1708314146000,0],[1708314147000,0],[1708314148000,0],[1708314149000,0],[1708314150000,0],[1708314151000,0],[1708314152000,0],[1708314153000,0],[1708314154000,0],[1708314155000,0],[1708314156000,0],[1708314157000,0],[1708314158000,0],[1708314159000,0],[1708314160000,0],[1708314161000,0],[1708314162000,0],[1708314163000,0],[1708314164000,0],[1708314165000,0],[1708314166000,0],[1708314167000,0],[1708314168000,0],[1708314169000,0],[1708314170000,0],[1708314171000,0],[1708314172000,0],[1708314173000,0],[1708314174000,0],[1708314175000,0],[1708314176000,0],[1708314177000,0],[1708314178000,0],[1708314179000,0],[1708314180000,0],[1708314181000,0],[1708314182000,0],[1708314183000,0],[1708314184000,0],[1708314185000,0],[1708314186000,0],[1708314187000,0],[1708314188000,0],[1708314189000,0],[1708314190000,0],[1708314191000,0],[1708314192000,0],[1708314193000,0],[1708314194000,0],[1708314195000,0],[1708314196000,0],[1708314197000,0],[1708314198000,0],[1708314199000,0],[1708314200000,0],[1708314201000,0],[1708314202000,0],[1708314203000,0],[1708314204000,0],[1708314205000,0],[1708314206000,0],[1708314207000,0],[1708314208000,0],[1708314209000,0],[1708314210000,0],[1708314211000,0],[1708314212000,0],[1708314213000,0],[1708314214000,0],[1708314215000,0],[1708314216000,0],[1708314217000,0],[1708314218000,0],[1708314219000,0],[1708314220000,0],[1708314221000,0],[1708314222000,0],[1708314223000,0],[1708314224000,0],[1708314225000,0],[1708314226000,0],[1708314227000,0],[1708314228000,0],[1708314229000,0],[1708314230000,0],[1708314231000,0],[1708314232000,0],[1708314233000,0],[1708314234000,0],[1708314235000,0],[1708314236000,0],[1708314237000,0],[1708314238000,0],[1708314239000,0],[1708314240000,0],[1708314241000,0],[1708314242000,0],[1708314243000,0],[1708314244000,0],[1708314245000,0],[1708314246000,0],[1708314247000,0],[1708314248000,0],[1708314249000,0],[1708314250000,0],[1708314251000,0],[1708314252000,0],[1708314253000,0],[1708314254000,0],[1708314255000,0],[1708314256000,0],[1708314257000,0],[1708314258000,0],[1708314259000,0],[1708314260000,0],[1708314261000,0],[1708314262000,0],[1708314263000,0],[1708314264000,0],[1708314265000,0],[1708314266000,0],[1708314267000,0],[1708314268000,0],[1708314269000,0],[1708314270000,0],[1708314271000,0],[1708314272000,0],[1708314273000,0],[1708314274000,0],[1708314275000,0],[1708314276000,0],[1708314277000,0],[1708314278000,0],[1708314279000,0],[1708314280000,0],[1708314281000,0],[1708314282000,0],[1708314283000,0],[1708314284000,0],[1708314285000,0],[1708314286000,0],[1708314287000,0],[1708314288000,0],[1708314289000,0],[1708314290000,0],[1708314291000,0],[1708314292000,0],[1708314293000,0],[1708314294000,0],[1708314295000,0],[1708314296000,0],[1708314297000,0],[1708314298000,0],[1708314299000,0],[1708314300000,0],[1708314301000,0],[1708314302000,0],[1708314303000,0],[1708314304000,0],[1708314305000,0],[1708314306000,0],[1708314307000,0],[1708314308000,0],[1708314309000,0],[1708314310000,0],[1708314311000,0],[1708314312000,0],[1708314313000,0],[1708314314000,0],[1708314315000,0],[1708314316000,0],[1708314317000,0],[1708314318000,0],[1708314319000,0],[1708314320000,0],[1708314321000,0],[1708314322000,0],[1708314323000,0],[1708314324000,0],[1708314325000,0],[1708314326000,0],[1708314327000,0],[1708314328000,0],[1708314329000,0],[1708314330000,0],[1708314331000,0],[1708314332000,0],[1708314333000,0],[1708314334000,0],[1708314335000,0],[1708314336000,0],[1708314337000,0],[1708314338000,0],[1708314339000,0],[1708314340000,0],[1708314341000,0],[1708314342000,0],[1708314343000,0],[1708314344000,0],[1708314345000,0],[1708314346000,0],[1708314347000,0],[1708314348000,0],[1708314349000,0],[1708314350000,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', '15301', '15901', '16501', '17101', '17701', '18301', '18901', '19501', '20101', '20701', '21301', '21901', '22501', '23101', '23701', '24301', '24901', '25501', '26101', '26701', '27301', '27901', '28501', '29101', '29701', '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', '45302', '45902', '46502', '47102', '47702', '48302', '48902', '49502', '50102', '50702', '51302', '51902', '52502', '53102', '53702', '54302', '54902', '55502', '56102', '56702', '57302', '57902', '58502', '59102', '59702'],
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: [
38.44,1.21,1.17,1.3,1.74,0.76,0.42,0.4,0.39,0.41,0.45,0.39,0.33,0.25,0.28,0.22,0.16,0.14,0.11,0.05,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.01,0.0,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11,0.18,0.16,0.17,0.09,0.12,0.07,0.05,0.03,0.0,0.03,0.2,0.15,0.15,0.13,0.12,0.09,0.1,0.07,0.04
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
2.23,2.53,2.57,2.44,2.69,2.62,2.48,2.52,2.54,2.98,2.59,2.58,2.53,2.5,2.76,2.37,2.4,2.37,2.26,0.7,0.12,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.12
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708314051,[64,77,84,124,126,127,130,133,137,139]],[1708314052,null],[1708314053,[25,47,54,58,64,65,66,69,70,71]],[1708314054,null],[1708314055,[0,1,2,11,13,14,14,15,18,19]],[1708314056,[7,7,7,8,8,8,8,8,8,9]],[1708314057,[4,6,6,7,8,8,8,8,8,9]],[1708314058,[4,6,7,8,8,8,9,11,12,13]],[1708314059,[3,5,6,7,7,7,8,8,8,9]],[1708314060,[3,6,6,7,7,7,7,8,8,8]],[1708314061,[2,5,6,7,7,7,8,11,12,13]],[1708314062,[4,5,7,8,8,10,14,16,17,18]],[1708314063,[3,5,6,8,10,11,13,15,16,16]],[1708314064,[2,5,7,9,9,11,32,47,49,50]],[1708314065,[4,5,6,7,8,9,15,27,72,88]],[1708314066,[2,5,6,7,7,7,8,8,9,10]],[1708314067,[2,5,5,7,7,7,8,12,16,16]],[1708314068,[2,5,5,6,6,6,7,10,14,14]],[1708314069,[2,4,5,7,8,8,9,12,21,21]],[1708314070,[1,5,6,7,7,8,9,10,12,13]],[1708314071,[1,4,5,6,6,6,7,13,14,15]],[1708314072,[2,4,5,5,6,6,6,9,14,15]],[1708314073,[1,5,5,5,6,6,8,8,11,12]],[1708314074,[1,4,5,5,7,8,17,25,58,71]],[1708314075,[1,4,5,5,6,6,6,8,13,15]],[1708314076,[1,4,5,5,6,6,6,7,15,21]],[1708314077,[0,4,5,6,6,6,8,10,15,16]],[1708314078,[0,4,4,5,6,6,6,6,7,8]],[1708314079,[0,4,4,6,6,7,7,9,12,12]],[1708314080,[0,4,5,6,6,7,7,8,9,10]],[1708314081,[0,4,4,5,5,5,6,6,7,7]],[1708314082,[1,4,5,6,6,7,8,9,16,17]],[1708314083,[0,4,5,6,6,7,7,8,10,12]],[1708314084,[0,4,4,5,6,6,8,13,47,58]],[1708314085,[0,3,4,5,5,5,6,7,17,21]],[1708314086,[0,3,4,5,5,5,5,6,7,11]],[1708314087,[0,3,4,5,7,7,8,12,17,26]],[1708314088,[0,3,4,5,5,6,6,6,7,11]],[1708314089,[1,4,5,6,6,6,6,7,16,16]],[1708314090,[0,4,5,5,5,6,7,8,9,14]],[1708314091,[0,3,5,5,5,5,6,6,7,9]],[1708314092,[0,4,5,6,6,7,7,9,18,19]],[1708314093,[1,4,4,5,5,6,6,7,8,11]],[1708314094,[0,3,4,5,6,6,6,9,11,12]],[1708314095,[0,3,4,5,6,6,6,7,15,21]],[1708314096,[0,3,4,5,6,6,6,8,12,19]],[1708314097,[0,3,4,4,5,6,8,11,25,29]],[1708314098,[0,3,4,5,6,6,7,8,11,12]],[1708314099,[0,3,4,4,4,4,5,6,11,12]],[1708314100,[0,3,4,5,5,5,6,6,8,10]],[1708314101,[0,3,4,5,5,5,6,6,9,10]],[1708314102,[0,3,4,5,5,5,6,8,12,13]],[1708314103,[0,4,5,6,6,6,7,7,11,13]],[1708314104,[0,4,5,6,6,7,9,12,19,36]],[1708314105,[1,4,4,6,6,7,7,8,15,33]],[1708314106,[0,3,4,5,6,6,7,8,10,15]],[1708314107,[0,1,3,4,4,5,5,7,11,20]],[1708314108,[0,3,4,5,5,5,6,6,7,8]],[1708314109,[0,3,4,5,5,5,6,7,13,18]],[1708314110,[0,3,4,5,5,6,6,7,10,13]],[1708314111,[1,3,4,5,5,6,6,8,11,14]],[1708314112,[1,4,4,5,5,6,6,7,8,10]],[1708314113,[0,4,5,6,6,6,7,12,30,38]],[1708314114,[0,3,4,6,6,6,6,7,14,15]],[1708314115,[0,3,4,5,5,6,6,8,19,23]],[1708314116,[0,4,4,6,6,6,8,14,19,24]],[1708314117,[1,3,4,5,5,6,6,8,14,19]],[1708314118,[0,3,4,5,5,7,9,14,21,28]],[1708314119,[0,1,3,4,4,4,5,5,11,14]],[1708314120,[0,2,4,5,6,6,8,11,40,59]],[1708314121,[0,3,4,5,5,6,7,10,18,25]],[1708314122,[0,3,4,5,5,6,6,8,13,17]],[1708314123,[0,3,4,5,5,5,6,10,16,21]],[1708314124,[0,3,4,5,5,5,5,6,9,11]],[1708314125,[0,3,4,5,5,5,6,7,10,12]],[1708314126,[0,1,4,5,5,6,7,11,14,19]],[1708314127,[0,3,4,6,6,7,7,8,10,13]],[1708314128,[0,3,4,6,6,6,7,9,12,15]],[1708314129,[0,1,3,4,5,5,5,6,8,10]],[1708314130,[1,3,4,5,5,6,10,21,47,53]],[1708314131,[0,3,4,5,5,5,6,7,9,10]],[1708314132,[0,3,3,4,4,5,5,6,8,10]],[1708314133,[0,1,4,5,5,5,6,7,10,17]],[1708314134,[0,1,4,5,5,5,6,6,8,10]],[1708314135,[1,1,4,5,5,5,6,6,7,10]],[1708314136,[0,1,4,5,5,6,7,8,20,30]],[1708314137,[0,3,4,5,5,5,6,10,16,22]],[1708314138,[0,1,3,5,5,5,6,13,25,29]],[1708314139,[0,3,3,4,4,4,5,5,8,11]],[1708314140,[0,3,3,4,4,5,5,6,7,11]],[1708314141,[0,3,3,4,5,5,5,6,12,19]],[1708314142,[0,2,4,5,5,5,6,8,31,39]],[1708314143,[0,3,3,4,4,5,5,6,9,14]],[1708314144,[0,3,4,5,5,5,6,9,34,142]],[1708314145,[0,180,292,355,367,375,381,392,424,441]],[1708314146,[0,151,224,417,434,446,456,476,485,489]],[1708314147,[0,83,165,494,508,525,544,561,587,594]],[1708314148,[0,158,216,582,591,599,606,619,638,654]],[1708314149,[0,145,174,606,616,626,640,657,672,689]],[1708314150,[0,107,236,641,656,672,685,695,722,729]],[1708314151,[0,131,184,426,444,470,521,542,604,620]],[1708314152,[0,92,150,369,375,382,389,394,415,427]],[1708314153,[0,40,151,541,562,579,609,628,680,688]],[1708314154,[0,158,244,746,758,774,794,825,861,880]],[1708314155,[0,266,478,935,948,958,968,978,1015,1021]],[1708314156,[0,573,790,1003,1029,1085,1168,1231,1274,1283]],[1708314157,[0,1078,1268,1477,1504,1518,1525,1538,1551,1568]],[1708314158,[0,733,1299,1523,1530,1539,1552,1563,1574,1586]],[1708314159,[0,1328,1482,1648,1668,1684,1722,1843,1878,1886]],[1708314160,[0,1599,1883,2012,2039,2080,2141,2180,2218,2240]],[1708314161,[0,2205,2242,2284,2328,2361,2394,2460,2489,2492]],[1708314162,[0,2202,2251,2485,2496,2538,2554,2586,2598,2619]],[1708314163,[0,2234,2312,2667,2691,2704,2730,2771,2797,2806]],[1708314164,[0,2358,2391,2820,2831,2837,2851,2862,2872,2877]],[1708314165,[0,2361,2524,2901,2916,2924,2939,2962,2979,2985]],[1708314166,[0,2520,2732,2987,3002,3035,3073,3118,3147,3153]],[1708314167,[0,2765,2818,3233,3273,3301,3336,3363,3387,3398]],[1708314168,[1,1584,2911,3442,3474,3595,3610,3688,3764,3776]],[1708314169,[1,2961,3281,3892,3966,4031,4117,4169,4255,4260]],[1708314170,[1,3397,3944,4534,4567,4655,4766,4863,4900,4910]],[1708314171,[1,4076,4492,5219,5330,5447,5548,5665,5851,5868]],[1708314172,[0,4703,5112,6051,6087,6146,6281,6384,6478,6530]],[1708314173,[0,5305,5640,6846,6887,7014,7108,7146,7200,7261]],[1708314174,[0,5866,6137,7590,7728,7816,7922,8061,8144,8164]],[1708314175,[0,721,6556,8241,8367,8473,8670,8782,8825,8863]],[1708314176,[1,4010,7139,9070,9169,9349,9455,9483,9558,9563]],[1708314177,[0,2,7597,9636,9684,9758,9864,10005,10180,10182]],[1708314178,[0,2,8076,10370,10559,10575,10622,10815,10858,10873]],[1708314179,[0,1,8466,8809,8850,11054,11353,11523,11578,11609]],[1708314180,[1,2,8900,9273,9386,11771,11910,12029,12158,12181]],[1708314181,[0,1,2,9727,9853,9965,10134,10197,10208,10287]],[1708314182,[1,1,2,3572,7400,10369,10403,10413,10426,10433]],[1708314183,[0,0,1,45,4990,10761,10901,11010,11057,11063]],[1708314184,[0,0,1,11079,11159,11165,11280,11360,11413,11463]],[1708314185,[0,0,1,1,1,1,3,5372,6614,6683]],[1708314186,[0,2,2,59,70,77,4406,5654,7008,7061]],[1708314187,[0,0,0,0,0,1,1,5714,7190,7247]],[1708314188,[0,0,1,1,1,1,2,18,6358,7456]],[1708314189,[0,1,1,1,1,1,1,100,6706,7764]],[1708314190,[1,1,1,1,1,13,29,7447,8094,8097]],[1708314191,[1,1,1,1,1,1,2,6775,8492,8493]],[1708314192,[0,0,1,1,1,1,1,2,8657,8896]],[1708314193,[0,1,1,1,2,13,40,67,7096,7163]],[1708314194,[1,1,1,1,1,1,1,2,7084,7088]],[1708314195,[0,0,0,1,1,1,1,1,7962,9772]],[1708314196,[0,0,0,1,8,27,70,3874,10836,10949]],[1708314197,[0,0,1,1,1,1,1,1,8849,8957]],[1708314198,[0,1,1,1,1,1,1,1,9153,9178]],[1708314199,[0,0,1,1,10,46,62,77,3301,9270]],[1708314200,[0,0,0,1,1,1,1,6,1465,9396]],[1708314201,[0,0,1,1,1,1,1,1,1988,9750]],[1708314202,[0,0,0,1,1,4,24,53,10268,10282]],[1708314203,[0,0,0,0,0,0,0,0,1,1]],[1708314204,[0,0,0,0,0,1,1,1,1,1]],[1708314205,[0,0,1,1,1,40,49,73,96,99]],[1708314206,[0,1,1,1,1,1,1,1,1,1]],[1708314207,[0,0,1,1,1,1,1,1,2,2]],[1708314208,[0,0,1,1,22,54,63,79,83,88]],[1708314209,[0,0,1,1,1,1,1,1,2,2]],[1708314210,[1,1,1,1,1,1,1,2,6,9]],[1708314211,[0,1,1,1,1,1,5,37,97,121]],[1708314212,[0,1,1,1,1,1,1,1,1,2]],[1708314213,[1,1,1,1,1,1,1,66,113,117]],[1708314214,[0,0,0,1,1,1,22,70,94,105]],[1708314215,[0,0,0,1,1,1,1,1,1,1]],[1708314216,[0,0,1,1,1,1,1,1,8,43]],[1708314217,[0,0,0,1,1,2,9,17,31,34]],[1708314218,[0,0,1,1,1,1,1,1,2,2]],[1708314219,[0,1,1,1,1,1,6,25,52,62]],[1708314220,[1,1,1,1,1,1,1,1,33,40]],[1708314221,[0,1,1,1,1,1,1,1,1,2]],[1708314222,[0,1,1,1,1,1,1,15,35,37]],[1708314223,[0,1,1,1,1,1,1,1,2,2]],[1708314224,[0,0,0,1,1,1,1,1,1,1]],[1708314225,[0,0,0,1,1,1,2,36,78,81]],[1708314226,[0,0,0,1,1,1,1,1,7,10]],[1708314227,[0,0,0,1,1,1,1,1,28,37]],[1708314228,[0,1,1,1,1,1,7,41,83,85]],[1708314229,[0,1,1,1,1,1,1,1,2,2]],[1708314230,[0,0,0,1,1,1,1,1,1,1]],[1708314231,[0,1,1,1,1,1,44,86,106,113]],[1708314232,[0,0,1,1,1,1,1,1,1,1]],[1708314233,[0,0,1,1,1,1,1,1,14,25]],[1708314234,[1,1,1,1,3,17,23,30,69,76]],[1708314235,[0,1,1,1,1,1,1,1,1,1]],[1708314236,[0,1,1,1,1,1,1,1,1,1]],[1708314237,[0,0,0,1,1,1,1,9,30,36]],[1708314238,[0,0,0,1,1,1,1,1,1,1]],[1708314239,[0,0,0,1,1,1,1,1,1,1]],[1708314240,[0,0,0,0,9,46,67,85,124,138]],[1708314241,[0,0,0,0,0,0,0,0,0,0]],[1708314242,[0,0,1,1,1,1,1,17,35,36]],[1708314243,[1,1,1,1,1,1,1,1,3,7]],[1708314244,[1,1,1,1,1,1,1,1,2,2]],[1708314245,[0,1,1,1,1,1,31,45,92,104]],[1708314246,[0,0,0,1,1,1,1,1,1,2]],[1708314247,[0,0,1,1,1,1,1,3,18,26]],[1708314248,[0,1,1,1,1,16,23,65,93,102]],[1708314249,[0,0,1,1,1,1,1,1,33,84]],[1708314250,[0,1,1,1,1,1,1,2,2,2]],[1708314251,[0,1,1,1,1,21,62,84,104,107]],[1708314252,[0,0,1,1,1,1,1,1,1,2]],[1708314253,[0,0,1,1,1,1,1,1,2,2]],[1708314254,[0,1,1,1,1,1,31,72,87,105]],[1708314255,[0,1,1,1,1,1,1,1,7,16]],[1708314256,[1,1,1,1,1,1,1,1,1,2]],[1708314257,[0,1,1,1,1,6,61,89,123,129]],[1708314258,[0,1,1,1,1,1,1,9,70,81]],[1708314259,[0,1,1,1,1,1,1,1,2,2]],[1708314260,[0,0,1,1,1,1,15,49,76,90]],[1708314261,[0,0,0,1,1,1,1,1,2,2]],[1708314262,[0,1,1,1,1,1,1,1,1,1]],[1708314263,[0,0,1,1,1,19,67,90,118,140]],[1708314264,[0,0,1,1,1,1,1,1,10,22]],[1708314265,[0,1,1,1,1,1,1,4,94,109]],[1708314266,[0,0,0,1,1,1,1,19,50,58]],[1708314267,[0,0,1,1,1,1,1,2,2,2]],[1708314268,[1,1,1,1,1,1,1,2,75,78]],[1708314269,[1,1,1,1,1,1,1,1,2,2]],[1708314270,[0,1,1,1,1,1,1,1,1,1]],[1708314271,[0,1,1,1,3,19,58,89,105,110]],[1708314272,[1,1,1,1,1,1,1,1,2,3]],[1708314273,[0,0,1,1,1,1,6,55,74,84]],[1708314274,[0,0,0,1,1,1,1,8,46,64]],[1708314275,[0,0,0,1,1,1,1,1,1,1]],[1708314276,[0,0,1,1,1,1,1,1,1,2]],[1708314277,[0,1,1,1,2,12,52,71,115,132]],[1708314278,[0,0,1,1,1,1,1,1,1,2]],[1708314279,[0,0,0,1,1,1,1,2,68,95]],[1708314280,[0,1,1,1,1,2,7,17,27,34]],[1708314281,[0,1,1,1,1,1,1,1,1,1]],[1708314282,[0,0,1,1,1,1,1,1,1,1]],[1708314283,[0,0,0,1,1,12,19,44,57,62]],[1708314284,[0,0,1,1,1,1,1,1,1,2]],[1708314285,[0,0,1,1,1,1,1,1,1,2]],[1708314286,[0,1,1,9,24,40865,52906,53017,53088,53097]],[1708314287,[0,0,1,52403,52562,52663,52685,52803,52855,52857]],[1708314288,[0,1,1,52160,52193,52290,59799,59932,59969,59986]],[1708314289,[0,1,51439,57206,59096,59247,59372,59471,59691,59712]],[1708314290,[0,0,51138,58418,58530,58630,58771,58870,58923,58961]],[1708314291,[0,1,50697,57840,57891,57985,58101,58218,58261,58270]],[1708314292,[0,1,50190,57050,57137,57273,57348,57457,57546,57563]],[1708314293,[0,1,49763,56402,56496,56593,56703,56771,56849,56877]],[1708314294,[0,1,49287,55741,55839,55915,55976,56102,56174,56191]],[1708314295,[0,100,48884,55048,55126,55222,55308,55421,55499,55535]],[1708314296,[0,48307,48472,54614,54637,54678,54724,54782,54821,54834]],[1708314297,null],[1708314298,null],[1708314299,null],[1708314300,null],[1708314301,null],[1708314302,null],[1708314303,null],[1708314304,null],[1708314305,null],[1708314306,null],[1708314307,null],[1708314308,null],[1708314309,null],[1708314310,null],[1708314311,null],[1708314312,null],[1708314313,null],[1708314314,null],[1708314315,null],[1708314316,null],[1708314317,null],[1708314318,null],[1708314319,null],[1708314320,null],[1708314321,null],[1708314322,null],[1708314323,null],[1708314324,null],[1708314325,null],[1708314326,null],[1708314327,null],[1708314328,null],[1708314329,null],[1708314330,null],[1708314331,null],[1708314332,null],[1708314333,null],[1708314334,null],[1708314335,null],[1708314336,null],[1708314337,null],[1708314338,null],[1708314339,null],[1708314340,null],[1708314341,null],[1708314342,null],[1708314343,null],[1708314344,null],[1708314345,null],[1708314346,null],[1708314347,null],[1708314348,null],[1708314349,null],[1708314350,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([[1708314051,[25,25,0]],[1708314052,[1,0,1]],[1708314053,[25,25,0]],[1708314054,[1,0,1]],[1708314055,[71,45,26]],[1708314056,[3,3,0]],[1708314057,[6,6,0]],[1708314058,[9,9,0]],[1708314059,[11,11,0]],[1708314060,[13,13,0]],[1708314061,[18,18,0]],[1708314062,[19,19,0]],[1708314063,[24,24,0]],[1708314064,[26,26,0]],[1708314065,[27,27,0]],[1708314066,[32,32,0]],[1708314067,[34,34,0]],[1708314068,[37,37,0]],[1708314069,[39,39,0]],[1708314070,[43,43,0]],[1708314071,[44,44,0]],[1708314072,[48,48,0]],[1708314073,[50,50,0]],[1708314074,[55,55,0]],[1708314075,[56,56,0]],[1708314076,[60,60,0]],[1708314077,[61,61,0]],[1708314078,[65,65,0]],[1708314079,[67,67,0]],[1708314080,[70,70,0]],[1708314081,[74,74,0]],[1708314082,[76,76,0]],[1708314083,[80,80,0]],[1708314084,[81,81,0]],[1708314085,[84,84,0]],[1708314086,[87,87,0]],[1708314087,[91,91,0]],[1708314088,[92,92,0]],[1708314089,[96,96,0]],[1708314090,[98,98,0]],[1708314091,[101,101,0]],[1708314092,[106,106,0]],[1708314093,[107,107,0]],[1708314094,[109,109,0]],[1708314095,[114,114,0]],[1708314096,[115,115,0]],[1708314097,[118,118,0]],[1708314098,[121,121,0]],[1708314099,[124,124,0]],[1708314100,[126,126,0]],[1708314101,[129,129,0]],[1708314102,[133,133,0]],[1708314103,[134,134,0]],[1708314104,[138,138,0]],[1708314105,[141,141,0]],[1708314106,[143,143,0]],[1708314107,[146,146,0]],[1708314108,[149,149,0]],[1708314109,[152,152,0]],[1708314110,[155,155,0]],[1708314111,[157,157,0]],[1708314112,[160,160,0]],[1708314113,[164,164,0]],[1708314114,[165,165,0]],[1708314115,[170,170,0]],[1708314116,[172,172,0]],[1708314117,[174,174,0]],[1708314118,[176,176,0]],[1708314119,[181,181,0]],[1708314120,[183,183,0]],[1708314121,[185,185,0]],[1708314122,[189,189,0]],[1708314123,[191,191,0]],[1708314124,[194,194,0]],[1708314125,[196,196,0]],[1708314126,[200,200,0]],[1708314127,[202,202,0]],[1708314128,[206,206,0]],[1708314129,[207,207,0]],[1708314130,[212,212,0]],[1708314131,[213,213,0]],[1708314132,[217,217,0]],[1708314133,[220,220,0]],[1708314134,[222,222,0]],[1708314135,[224,224,0]],[1708314136,[228,228,0]],[1708314137,[230,230,0]],[1708314138,[234,234,0]],[1708314139,[235,235,0]],[1708314140,[239,239,0]],[1708314141,[242,242,0]],[1708314142,[244,244,0]],[1708314143,[248,248,0]],[1708314144,[251,251,0]],[1708314145,[252,252,0]],[1708314146,[256,256,0]],[1708314147,[259,259,0]],[1708314148,[262,262,0]],[1708314149,[265,265,0]],[1708314150,[266,266,0]],[1708314151,[270,270,0]],[1708314152,[272,272,0]],[1708314153,[275,275,0]],[1708314154,[279,279,0]],[1708314155,[281,281,0]],[1708314156,[284,284,0]],[1708314157,[286,286,0]],[1708314158,[290,290,0]],[1708314159,[291,291,0]],[1708314160,[296,296,0]],[1708314161,[298,298,0]],[1708314162,[300,300,0]],[1708314163,[304,304,0]],[1708314164,[306,306,0]],[1708314165,[310,310,0]],[1708314166,[312,312,0]],[1708314167,[315,315,0]],[1708314168,[318,318,0]],[1708314169,[320,320,0]],[1708314170,[322,322,0]],[1708314171,[327,327,0]],[1708314172,[329,329,0]],[1708314173,[332,332,0]],[1708314174,[334,334,0]],[1708314175,[338,306,32]],[1708314176,[340,277,63]],[1708314177,[340,250,90]],[1708314178,[340,225,115]],[1708314179,[340,166,174]],[1708314180,[340,157,183]],[1708314181,[340,110,230]],[1708314182,[340,94,246]],[1708314183,[340,101,239]],[1708314184,[340,76,264]],[1708314185,[340,76,264]],[1708314186,[340,63,277]],[1708314187,[340,72,268]],[1708314188,[340,72,268]],[1708314189,[340,74,266]],[1708314190,[340,68,272]],[1708314191,[340,84,256]],[1708314192,[340,79,261]],[1708314193,[340,68,272]],[1708314194,[340,75,265]],[1708314195,[340,83,257]],[1708314196,[340,71,269]],[1708314197,[340,61,279]],[1708314198,[340,88,252]],[1708314199,[340,66,274]],[1708314200,[340,86,254]],[1708314201,[340,81,259]],[1708314202,[340,64,276]],[1708314203,[340,82,258]],[1708314204,[340,71,269]],[1708314205,[340,75,265]],[1708314206,[340,56,284]],[1708314207,[340,67,273]],[1708314208,[340,57,283]],[1708314209,[340,76,264]],[1708314210,[340,77,263]],[1708314211,[340,75,265]],[1708314212,[340,62,278]],[1708314213,[340,69,271]],[1708314214,[340,62,278]],[1708314215,[340,80,260]],[1708314216,[340,84,256]],[1708314217,[340,73,267]],[1708314218,[340,69,271]],[1708314219,[340,66,274]],[1708314220,[340,71,269]],[1708314221,[340,60,280]],[1708314222,[340,71,269]],[1708314223,[340,66,274]],[1708314224,[340,44,296]],[1708314225,[340,69,271]],[1708314226,[340,52,288]],[1708314227,[340,49,291]],[1708314228,[340,71,269]],[1708314229,[338,77,261]],[1708314230,[342,77,265]],[1708314231,[340,75,265]],[1708314232,[340,65,275]],[1708314233,[340,64,276]],[1708314234,[340,74,266]],[1708314235,[340,81,259]],[1708314236,[340,80,260]],[1708314237,[340,81,259]],[1708314238,[340,63,277]],[1708314239,[340,66,274]],[1708314240,[340,66,274]],[1708314241,[340,54,286]],[1708314242,[340,77,263]],[1708314243,[340,76,264]],[1708314244,[340,77,263]],[1708314245,[340,62,278]],[1708314246,[340,66,274]],[1708314247,[340,60,280]],[1708314248,[340,65,275]],[1708314249,[340,83,257]],[1708314250,[340,67,273]],[1708314251,[340,77,263]],[1708314252,[340,81,259]],[1708314253,[340,80,260]],[1708314254,[340,69,271]],[1708314255,[340,72,268]],[1708314256,[340,72,268]],[1708314257,[340,84,256]],[1708314258,[340,76,264]],[1708314259,[340,64,276]],[1708314260,[340,80,260]],[1708314261,[340,84,256]],[1708314262,[340,78,262]],[1708314263,[340,70,270]],[1708314264,[340,80,260]],[1708314265,[340,80,260]],[1708314266,[340,65,275]],[1708314267,[340,56,284]],[1708314268,[340,65,275]],[1708314269,[340,74,266]],[1708314270,[340,73,267]],[1708314271,[340,72,268]],[1708314272,[340,77,263]],[1708314273,[340,78,262]],[1708314274,[340,62,278]],[1708314275,[340,70,270]],[1708314276,[340,76,264]],[1708314277,[340,66,274]],[1708314278,[340,69,271]],[1708314279,[340,62,278]],[1708314280,[340,70,270]],[1708314281,[340,69,271]],[1708314282,[340,80,260]],[1708314283,[340,54,286]],[1708314284,[340,77,263]],[1708314285,[340,89,251]],[1708314286,[340,100,240]],[1708314287,[340,113,227]],[1708314288,[340,114,226]],[1708314289,[340,190,150]],[1708314290,[340,207,133]],[1708314291,[340,206,134]],[1708314292,[340,254,86]],[1708314293,[340,278,62]],[1708314294,[340,278,62]],[1708314295,[340,332,8]],[1708314296,[163,163,0]],[1708314297,[0,0,0]],[1708314298,[0,0,0]],[1708314299,[0,0,0]],[1708314300,[0,0,0]],[1708314301,[0,0,0]],[1708314302,[0,0,0]],[1708314303,[0,0,0]],[1708314304,[0,0,0]],[1708314305,[0,0,0]],[1708314306,[0,0,0]],[1708314307,[0,0,0]],[1708314308,[0,0,0]],[1708314309,[0,0,0]],[1708314310,[0,0,0]],[1708314311,[0,0,0]],[1708314312,[0,0,0]],[1708314313,[0,0,0]],[1708314314,[0,0,0]],[1708314315,[0,0,0]],[1708314316,[0,0,0]],[1708314317,[0,0,0]],[1708314318,[0,0,0]],[1708314319,[0,0,0]],[1708314320,[0,0,0]],[1708314321,[0,0,0]],[1708314322,[0,0,0]],[1708314323,[0,0,0]],[1708314324,[0,0,0]],[1708314325,[0,0,0]],[1708314326,[0,0,0]],[1708314327,[0,0,0]],[1708314328,[0,0,0]],[1708314329,[0,0,0]],[1708314330,[0,0,0]],[1708314331,[0,0,0]],[1708314332,[0,0,0]],[1708314333,[0,0,0]],[1708314334,[0,0,0]],[1708314335,[0,0,0]],[1708314336,[0,0,0]],[1708314337,[0,0,0]],[1708314338,[0,0,0]],[1708314339,[0,0,0]],[1708314340,[0,0,0]],[1708314341,[0,0,0]],[1708314342,[0,0,0]],[1708314343,[0,0,0]],[1708314344,[0,0,0]],[1708314345,[0,0,0]],[1708314346,[0,0,0]],[1708314347,[0,0,0]],[1708314348,[0,0,0]],[1708314349,[0,0,0]],[1708314350,[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,