-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathindex.html
1295 lines (1225 loc) · 154 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-24 01:28:08 GMT</span>
</span>
<span class="simulation-information-item">
<span class="simulation-information-label">Duration: </span>
<span>8m 5s </span>
</span>
<span class="simulation-tooltip simulation-information-item description" title="Description" data-content="Rinha de Backend - 2024/Q1: Crébito - jojodev">
<span class="simulation-information-label">Description: </span>
<span>Rinha de Backend - 2024/Q1: Crébito - jojodev</span>
</span>
</div>
</div>
</div>
</div>
<div id="statistics_table_container">
<div id="stats" class="statistics extensible-geant collapsed">
<div class="title">
<div id="statistics_title" class="title_base"><span class="title_base_stats">Stats</span><span class="expand-table">Fixed height</span><span id="toggle-stats" class="toggle-table"></span><span class="collapse-table">Full size</span></div>
<div class="right">
<button class="statistics-button expand-all-button">Expand all groups</button>
<button class="statistics-button collapse-all-button">Collapse all groups</button>
<button id="statistics_full_screen" class="statistics-button" onclick="openStatisticsTableModal()"><img alt="Fullscreen" src="style/fullscreen.svg"></button>
</div>
</div>
<div class="scrollable">
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span><abbr title="Count of events per second">Cnt/s</abbr></span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span><abbr title="Standard Deviation">Std Dev</abbr></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
</div>
<dialog id="statistics_table_modal" class="statistics-table-modal">
<div class="statistics-table-modal-header"><button class="button-modal" onclick="closeStatisticsTableModal()"><img alt="Close" src="style/close.svg"></button></div>
<div class="statistics-table-modal-container">
<div id="statistics_table_modal_content" class="statistics-table-modal-content"></div>
</div>
</dialog>
<script>
function openStatisticsTableModal () {
const statsTable = document.getElementById("stats");
const statsTableModal = document.getElementById("statistics_table_modal");
const fullScreenButton = document.getElementById("statistics_full_screen");
fullScreenButton.disabled = true;
if (typeof statsTableModal.showModal === "function") {
const statsTableModalContent = document.getElementById("statistics_table_modal_content");
statsTableModalContent.innerHTML = "";
statsTableModalContent.appendChild(statsTable);
statsTableModal.showModal();
statsTableModal.addEventListener("close", function () {
const container = document.getElementById("statistics_table_container");
container.appendChild(statsTable);
fullScreenButton.disabled = false;
});
} else {
const incompatibleBrowserVersionMessage = document.createElement("div");
incompatibleBrowserVersionMessage.innerText = "Sorry, the <dialog> API is not supported by this browser.";
statsTable.insertBefore(incompatibleBrowserVersionMessage, statsTable.children[0]);
}
}
function closeStatisticsTableModal () {
const statsTableModal = document.getElementById("statistics_table_modal");
statsTableModal.close();
}
</script>
<div class="statistics extensible-geant collapsed">
<div class="title">
Errors
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 502<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total ko">16658</td>
<td class="value error-col-3 total ko">49.748 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 502<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">8389</td>
<td class="value error-col-3 total ko">25.053 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total ko">7454</td>
<td class="value error-col-3 total ko">22.261 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 502<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total ko">768</td>
<td class="value error-col-3 total ko">2.294 %</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">4</span></td>
<td class="value error-col-2 total ko">146</td>
<td class="value error-col-3 total ko">0.436 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 504<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">9</td>
<td class="value error-col-3 total ko">0.027 %</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">6</span></td>
<td class="value error-col-2 total ko">9</td>
<td class="value error-col-3 total ko">0.027 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.is(200), but actually found 500<span class="value" style="display:none">7</span></td>
<td class="value error-col-2 total ko">7</td>
<td class="value error-col-3 total ko">0.021 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200,422), but actually found 500<span class="value" style="display:none">8</span></td>
<td class="value error-col-2 total ko">7</td>
<td class="value error-col-3 total ko">0.021 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(200), but actually found 500<span class="value" style="display:none">9</span></td>
<td class="value error-col-2 total ko">6</td>
<td class="value error-col-3 total ko">0.018 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in(422,400), but actually found 200<span class="value" style="display:none">10</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.015 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.ConsistenciaSaldoLimite - Extrato, WTF?!<span class="value" style="display:none">11</span></td>
<td class="value error-col-2 total ko">5</td>
<td class="value error-col-3 total ko">0.015 %</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">12</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.012 %</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">13</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.012 %</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">14</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.012 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo).find.ConsistenciaSaldoLimite - Transação, WTF?!<span class="value" style="display:none">15</span></td>
<td class="value error-col-2 total ko">3</td>
<td class="value error-col-3 total ko">0.009 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(ultimas_transacoes[0].descricao).find.is(danada), but actually found devolve<span class="value" style="display:none">16</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.006 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">status.find.in([200, 209], 304), found 500<span class="value" style="display:none">17</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.006 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo.total).find.is(2), but actually found -488848<span class="value" style="display:none">18</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(saldo.total).find.is(0), but actually found -3<span class="value" style="display:none">19</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">20</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: [
[1708738088000,0],[1708738089000,0],[1708738090000,0],[1708738091000,0],[1708738092000,0],[1708738093000,0],[1708738094000,0],[1708738095000,0],[1708738096000,0],[1708738097000,0],[1708738098000,0],[1708738099000,0],[1708738100000,0],[1708738101000,0],[1708738102000,0],[1708738103000,0],[1708738104000,0],[1708738105000,0],[1708738106000,0],[1708738107000,0],[1708738108000,0],[1708738109000,0],[1708738110000,0],[1708738111000,0],[1708738112000,0],[1708738113000,0],[1708738114000,0],[1708738115000,0],[1708738116000,0],[1708738117000,0],[1708738118000,0],[1708738119000,0],[1708738120000,0],[1708738121000,0],[1708738122000,0],[1708738123000,0],[1708738124000,0],[1708738125000,0],[1708738126000,0],[1708738127000,0],[1708738128000,0],[1708738129000,0],[1708738130000,0],[1708738131000,0],[1708738132000,0],[1708738133000,0],[1708738134000,0],[1708738135000,0],[1708738136000,0],[1708738137000,0],[1708738138000,0],[1708738139000,0],[1708738140000,0],[1708738141000,0],[1708738142000,0],[1708738143000,0],[1708738144000,0],[1708738145000,0],[1708738146000,0],[1708738147000,0],[1708738148000,0],[1708738149000,0],[1708738150000,0],[1708738151000,0],[1708738152000,0],[1708738153000,0],[1708738154000,0],[1708738155000,0],[1708738156000,0],[1708738157000,0],[1708738158000,0],[1708738159000,0],[1708738160000,0],[1708738161000,0],[1708738162000,0],[1708738163000,0],[1708738164000,0],[1708738165000,0],[1708738166000,0],[1708738167000,0],[1708738168000,0],[1708738169000,0],[1708738170000,0],[1708738171000,0],[1708738172000,0],[1708738173000,0],[1708738174000,0],[1708738175000,0],[1708738176000,0],[1708738177000,0],[1708738178000,0],[1708738179000,0],[1708738180000,0],[1708738181000,0],[1708738182000,0],[1708738183000,0],[1708738184000,0],[1708738185000,0],[1708738186000,0],[1708738187000,0],[1708738188000,0],[1708738189000,0],[1708738190000,0],[1708738191000,0],[1708738192000,0],[1708738193000,0],[1708738194000,0],[1708738195000,0],[1708738196000,0],[1708738197000,0],[1708738198000,0],[1708738199000,0],[1708738200000,0],[1708738201000,0],[1708738202000,0],[1708738203000,0],[1708738204000,0],[1708738205000,0],[1708738206000,0],[1708738207000,0],[1708738208000,0],[1708738209000,0],[1708738210000,0],[1708738211000,0],[1708738212000,0],[1708738213000,0],[1708738214000,0],[1708738215000,0],[1708738216000,0],[1708738217000,0],[1708738218000,0],[1708738219000,0],[1708738220000,0],[1708738221000,0],[1708738222000,0],[1708738223000,0],[1708738224000,0],[1708738225000,0],[1708738226000,0],[1708738227000,0],[1708738228000,0],[1708738229000,0],[1708738230000,0],[1708738231000,0],[1708738232000,0],[1708738233000,0],[1708738234000,0],[1708738235000,0],[1708738236000,0],[1708738237000,0],[1708738238000,0],[1708738239000,0],[1708738240000,0],[1708738241000,0],[1708738242000,0],[1708738243000,0],[1708738244000,0],[1708738245000,0],[1708738246000,0],[1708738247000,0],[1708738248000,0],[1708738249000,0],[1708738250000,0],[1708738251000,0],[1708738252000,0],[1708738253000,0],[1708738254000,0],[1708738255000,0],[1708738256000,0],[1708738257000,0],[1708738258000,0],[1708738259000,0],[1708738260000,0],[1708738261000,0],[1708738262000,0],[1708738263000,0],[1708738264000,0],[1708738265000,0],[1708738266000,0],[1708738267000,0],[1708738268000,0],[1708738269000,0],[1708738270000,0],[1708738271000,0],[1708738272000,0],[1708738273000,0],[1708738274000,0],[1708738275000,0],[1708738276000,0],[1708738277000,0],[1708738278000,0],[1708738279000,0],[1708738280000,0],[1708738281000,0],[1708738282000,0],[1708738283000,0],[1708738284000,0],[1708738285000,0],[1708738286000,0],[1708738287000,0],[1708738288000,0],[1708738289000,0],[1708738290000,0],[1708738291000,0],[1708738292000,0],[1708738293000,0],[1708738294000,0],[1708738295000,0],[1708738296000,0],[1708738297000,0],[1708738298000,0],[1708738299000,0],[1708738300000,0],[1708738301000,0],[1708738302000,0],[1708738303000,0],[1708738304000,0],[1708738305000,0],[1708738306000,0],[1708738307000,0],[1708738308000,0],[1708738309000,0],[1708738310000,0],[1708738311000,0],[1708738312000,0],[1708738313000,0],[1708738314000,0],[1708738315000,0],[1708738316000,0],[1708738317000,0],[1708738318000,0],[1708738319000,0],[1708738320000,0],[1708738321000,0],[1708738322000,0],[1708738323000,0],[1708738324000,0],[1708738325000,0],[1708738326000,0],[1708738327000,0],[1708738328000,0],[1708738329000,0],[1708738330000,0],[1708738331000,0],[1708738332000,1],[1708738333000,2],[1708738334000,4],[1708738335000,6],[1708738336000,6],[1708738337000,7],[1708738338000,10],[1708738339000,14],[1708738340000,16],[1708738341000,16],[1708738342000,21],[1708738343000,21],[1708738344000,30],[1708738345000,32],[1708738346000,39],[1708738347000,44],[1708738348000,49],[1708738349000,55],[1708738350000,61],[1708738351000,64],[1708738352000,69],[1708738353000,73],[1708738354000,78],[1708738355000,85],[1708738356000,90],[1708738357000,97],[1708738358000,104],[1708738359000,111],[1708738360000,118],[1708738361000,123],[1708738362000,134],[1708738363000,142],[1708738364000,150],[1708738365000,161],[1708738366000,168],[1708738367000,179],[1708738368000,187],[1708738369000,200],[1708738370000,208],[1708738371000,219],[1708738372000,231],[1708738373000,241],[1708738374000,249],[1708738375000,258],[1708738376000,270],[1708738377000,280],[1708738378000,291],[1708738379000,302],[1708738380000,314],[1708738381000,326],[1708738382000,339],[1708738383000,343],[1708738384000,346],[1708738385000,239],[1708738386000,50],[1708738387000,50],[1708738388000,52],[1708738389000,52],[1708738390000,62],[1708738391000,54],[1708738392000,56],[1708738393000,55],[1708738394000,57],[1708738395000,58],[1708738396000,66],[1708738397000,74],[1708738398000,84],[1708738399000,90],[1708738400000,101],[1708738401000,109],[1708738402000,119],[1708738403000,129],[1708738404000,137],[1708738405000,145],[1708738406000,155],[1708738407000,165],[1708738408000,177],[1708738409000,186],[1708738410000,196],[1708738411000,222],[1708738412000,212],[1708738413000,220],[1708738414000,223],[1708738415000,228],[1708738416000,232],[1708738417000,235],[1708738418000,237],[1708738419000,238],[1708738420000,242],[1708738421000,242],[1708738422000,274],[1708738423000,269],[1708738424000,264],[1708738425000,261],[1708738426000,264],[1708738427000,266],[1708738428000,275],[1708738429000,276],[1708738430000,282],[1708738431000,288],[1708738432000,325],[1708738433000,280],[1708738434000,277],[1708738435000,277],[1708738436000,278],[1708738437000,279],[1708738438000,280],[1708738439000,280],[1708738440000,282],[1708738441000,283],[1708738442000,285],[1708738443000,285],[1708738444000,288],[1708738445000,288],[1708738446000,289],[1708738447000,290],[1708738448000,291],[1708738449000,292],[1708738450000,292],[1708738451000,294],[1708738452000,295],[1708738453000,295],[1708738454000,295],[1708738455000,296],[1708738456000,325],[1708738457000,337],[1708738458000,345],[1708738459000,368],[1708738460000,387],[1708738461000,149],[1708738462000,205],[1708738463000,272],[1708738464000,330],[1708738465000,110],[1708738466000,110],[1708738467000,110],[1708738468000,110],[1708738469000,110],[1708738470000,110],[1708738471000,110],[1708738472000,159],[1708738473000,208],[1708738474000,279],[1708738475000,337],[1708738476000,374],[1708738477000,394],[1708738478000,431],[1708738479000,459],[1708738480000,487],[1708738481000,518],[1708738482000,559],[1708738483000,602],[1708738484000,505],[1708738485000,297],[1708738486000,110],[1708738487000,110],[1708738488000,110],[1708738489000,110],[1708738490000,110],[1708738491000,110],[1708738492000,110],[1708738493000,110],[1708738494000,110],[1708738495000,110],[1708738496000,153],[1708738497000,208],[1708738498000,255],[1708738499000,298],[1708738500000,340],[1708738501000,394],[1708738502000,443],[1708738503000,488],[1708738504000,541],[1708738505000,230],[1708738506000,254],[1708738507000,318],[1708738508000,373],[1708738509000,425],[1708738510000,110],[1708738511000,110],[1708738512000,110],[1708738513000,110],[1708738514000,110],[1708738515000,111],[1708738516000,158],[1708738517000,213],[1708738518000,267],[1708738519000,316],[1708738520000,376],[1708738521000,415],[1708738522000,168],[1708738523000,224],[1708738524000,274],[1708738525000,348],[1708738526000,415],[1708738527000,110],[1708738528000,110],[1708738529000,110],[1708738530000,110],[1708738531000,110],[1708738532000,110],[1708738533000,149],[1708738534000,213],[1708738535000,257],[1708738536000,323],[1708738537000,376],[1708738538000,416],[1708738539000,445],[1708738540000,471],[1708738541000,513],[1708738542000,430],[1708738543000,288],[1708738544000,351],[1708738545000,404],[1708738546000,133],[1708738547000,110],[1708738548000,110],[1708738549000,110],[1708738550000,110],[1708738551000,110],[1708738552000,110],[1708738553000,111],[1708738554000,151],[1708738555000,207],[1708738556000,261],[1708738557000,324],[1708738558000,365],[1708738559000,412],[1708738560000,452],[1708738561000,495],[1708738562000,177],[1708738563000,180],[1708738564000,189],[1708738565000,218],[1708738566000,267],[1708738567000,330],[1708738568000,395],[1708738569000,110],[1708738570000,110],[1708738571000,110],[1708738572000,110],[1708738573000,47]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#68b65c',
name: 'débitos',
data: [
[1708738088000,0],[1708738089000,0],[1708738090000,0],[1708738091000,0],[1708738092000,0],[1708738093000,0],[1708738094000,0],[1708738095000,0],[1708738096000,0],[1708738097000,0],[1708738098000,0],[1708738099000,0],[1708738100000,0],[1708738101000,0],[1708738102000,0],[1708738103000,0],[1708738104000,0],[1708738105000,0],[1708738106000,0],[1708738107000,0],[1708738108000,0],[1708738109000,0],[1708738110000,0],[1708738111000,0],[1708738112000,0],[1708738113000,0],[1708738114000,0],[1708738115000,0],[1708738116000,0],[1708738117000,0],[1708738118000,0],[1708738119000,0],[1708738120000,0],[1708738121000,0],[1708738122000,0],[1708738123000,0],[1708738124000,0],[1708738125000,0],[1708738126000,0],[1708738127000,0],[1708738128000,0],[1708738129000,0],[1708738130000,0],[1708738131000,0],[1708738132000,0],[1708738133000,0],[1708738134000,0],[1708738135000,0],[1708738136000,0],[1708738137000,0],[1708738138000,0],[1708738139000,0],[1708738140000,0],[1708738141000,0],[1708738142000,0],[1708738143000,0],[1708738144000,0],[1708738145000,0],[1708738146000,0],[1708738147000,0],[1708738148000,0],[1708738149000,0],[1708738150000,0],[1708738151000,0],[1708738152000,0],[1708738153000,0],[1708738154000,0],[1708738155000,0],[1708738156000,0],[1708738157000,0],[1708738158000,0],[1708738159000,0],[1708738160000,0],[1708738161000,0],[1708738162000,0],[1708738163000,0],[1708738164000,0],[1708738165000,0],[1708738166000,0],[1708738167000,0],[1708738168000,0],[1708738169000,0],[1708738170000,0],[1708738171000,0],[1708738172000,0],[1708738173000,0],[1708738174000,0],[1708738175000,0],[1708738176000,0],[1708738177000,0],[1708738178000,0],[1708738179000,0],[1708738180000,0],[1708738181000,0],[1708738182000,0],[1708738183000,0],[1708738184000,0],[1708738185000,0],[1708738186000,0],[1708738187000,0],[1708738188000,0],[1708738189000,0],[1708738190000,0],[1708738191000,0],[1708738192000,0],[1708738193000,0],[1708738194000,0],[1708738195000,0],[1708738196000,0],[1708738197000,0],[1708738198000,0],[1708738199000,0],[1708738200000,0],[1708738201000,0],[1708738202000,0],[1708738203000,0],[1708738204000,0],[1708738205000,0],[1708738206000,0],[1708738207000,0],[1708738208000,0],[1708738209000,0],[1708738210000,0],[1708738211000,0],[1708738212000,0],[1708738213000,0],[1708738214000,0],[1708738215000,0],[1708738216000,0],[1708738217000,0],[1708738218000,0],[1708738219000,0],[1708738220000,0],[1708738221000,0],[1708738222000,0],[1708738223000,0],[1708738224000,0],[1708738225000,0],[1708738226000,0],[1708738227000,0],[1708738228000,0],[1708738229000,0],[1708738230000,0],[1708738231000,0],[1708738232000,0],[1708738233000,0],[1708738234000,0],[1708738235000,0],[1708738236000,0],[1708738237000,0],[1708738238000,0],[1708738239000,0],[1708738240000,0],[1708738241000,0],[1708738242000,0],[1708738243000,0],[1708738244000,0],[1708738245000,0],[1708738246000,0],[1708738247000,0],[1708738248000,0],[1708738249000,0],[1708738250000,0],[1708738251000,0],[1708738252000,0],[1708738253000,0],[1708738254000,0],[1708738255000,0],[1708738256000,0],[1708738257000,0],[1708738258000,0],[1708738259000,0],[1708738260000,0],[1708738261000,0],[1708738262000,0],[1708738263000,0],[1708738264000,0],[1708738265000,0],[1708738266000,0],[1708738267000,0],[1708738268000,0],[1708738269000,0],[1708738270000,0],[1708738271000,0],[1708738272000,0],[1708738273000,0],[1708738274000,0],[1708738275000,0],[1708738276000,0],[1708738277000,0],[1708738278000,0],[1708738279000,0],[1708738280000,0],[1708738281000,0],[1708738282000,0],[1708738283000,0],[1708738284000,0],[1708738285000,0],[1708738286000,0],[1708738287000,0],[1708738288000,0],[1708738289000,0],[1708738290000,0],[1708738291000,0],[1708738292000,0],[1708738293000,0],[1708738294000,0],[1708738295000,0],[1708738296000,0],[1708738297000,0],[1708738298000,0],[1708738299000,0],[1708738300000,0],[1708738301000,0],[1708738302000,0],[1708738303000,0],[1708738304000,0],[1708738305000,0],[1708738306000,0],[1708738307000,0],[1708738308000,0],[1708738309000,0],[1708738310000,0],[1708738311000,0],[1708738312000,0],[1708738313000,0],[1708738314000,0],[1708738315000,0],[1708738316000,0],[1708738317000,0],[1708738318000,0],[1708738319000,0],[1708738320000,0],[1708738321000,0],[1708738322000,0],[1708738323000,0],[1708738324000,0],[1708738325000,0],[1708738326000,0],[1708738327000,0],[1708738328000,0],[1708738329000,0],[1708738330000,0],[1708738331000,0],[1708738332000,1],[1708738333000,2],[1708738334000,5],[1708738335000,9],[1708738336000,10],[1708738337000,12],[1708738338000,17],[1708738339000,25],[1708738340000,29],[1708738341000,32],[1708738342000,42],[1708738343000,44],[1708738344000,54],[1708738345000,59],[1708738346000,67],[1708738347000,75],[1708738348000,78],[1708738349000,89],[1708738350000,100],[1708738351000,110],[1708738352000,119],[1708738353000,129],[1708738354000,139],[1708738355000,152],[1708738356000,166],[1708738357000,180],[1708738358000,195],[1708738359000,212],[1708738360000,224],[1708738361000,236],[1708738362000,250],[1708738363000,270],[1708738364000,281],[1708738365000,298],[1708738366000,316],[1708738367000,335],[1708738368000,351],[1708738369000,370],[1708738370000,384],[1708738371000,402],[1708738372000,426],[1708738373000,443],[1708738374000,464],[1708738375000,485],[1708738376000,506],[1708738377000,528],[1708738378000,552],[1708738379000,575],[1708738380000,598],[1708738381000,624],[1708738382000,651],[1708738383000,657],[1708738384000,662],[1708738385000,443],[1708738386000,98],[1708738387000,102],[1708738388000,102],[1708738389000,104],[1708738390000,125],[1708738391000,108],[1708738392000,110],[1708738393000,111],[1708738394000,113],[1708738395000,115],[1708738396000,131],[1708738397000,151],[1708738398000,162],[1708738399000,179],[1708738400000,194],[1708738401000,212],[1708738402000,231],[1708738403000,248],[1708738404000,270],[1708738405000,286],[1708738406000,300],[1708738407000,318],[1708738408000,341],[1708738409000,358],[1708738410000,376],[1708738411000,438],[1708738412000,417],[1708738413000,435],[1708738414000,440],[1708738415000,442],[1708738416000,443],[1708738417000,446],[1708738418000,450],[1708738419000,455],[1708738420000,458],[1708738421000,464],[1708738422000,525],[1708738423000,505],[1708738424000,496],[1708738425000,491],[1708738426000,487],[1708738427000,492],[1708738428000,506],[1708738429000,507],[1708738430000,514],[1708738431000,527],[1708738432000,594],[1708738433000,522],[1708738434000,499],[1708738435000,501],[1708738436000,503],[1708738437000,505],[1708738438000,506],[1708738439000,509],[1708738440000,510],[1708738441000,512],[1708738442000,515],[1708738443000,516],[1708738444000,519],[1708738445000,520],[1708738446000,522],[1708738447000,524],[1708738448000,526],[1708738449000,529],[1708738450000,529],[1708738451000,532],[1708738452000,534],[1708738453000,533],[1708738454000,535],[1708738455000,533],[1708738456000,594],[1708738457000,617],[1708738458000,649],[1708738459000,694],[1708738460000,737],[1708738461000,291],[1708738462000,416],[1708738463000,549],[1708738464000,665],[1708738465000,220],[1708738466000,221],[1708738467000,221],[1708738468000,220],[1708738469000,219],[1708738470000,221],[1708738471000,221],[1708738472000,318],[1708738473000,422],[1708738474000,543],[1708738475000,659],[1708738476000,733],[1708738477000,795],[1708738478000,859],[1708738479000,917],[1708738480000,971],[1708738481000,1053],[1708738482000,1102],[1708738483000,1180],[1708738484000,999],[1708738485000,545],[1708738486000,219],[1708738487000,221],[1708738488000,220],[1708738489000,221],[1708738490000,220],[1708738491000,221],[1708738492000,220],[1708738493000,220],[1708738494000,221],[1708738495000,220],[1708738496000,316],[1708738497000,392],[1708738498000,510],[1708738499000,604],[1708738500000,691],[1708738501000,796],[1708738502000,894],[1708738503000,985],[1708738504000,1091],[1708738505000,497],[1708738506000,531],[1708738507000,626],[1708738508000,734],[1708738509000,877],[1708738510000,220],[1708738511000,221],[1708738512000,220],[1708738513000,221],[1708738514000,221],[1708738515000,220],[1708738516000,322],[1708738517000,417],[1708738518000,533],[1708738519000,644],[1708738520000,767],[1708738521000,860],[1708738522000,344],[1708738523000,454],[1708738524000,560],[1708738525000,688],[1708738526000,825],[1708738527000,221],[1708738528000,221],[1708738529000,220],[1708738530000,221],[1708738531000,221],[1708738532000,221],[1708738533000,312],[1708738534000,415],[1708738535000,522],[1708738536000,639],[1708738537000,763],[1708738538000,828],[1708738539000,879],[1708738540000,935],[1708738541000,1020],[1708738542000,868],[1708738543000,576],[1708738544000,679],[1708738545000,794],[1708738546000,264],[1708738547000,220],[1708738548000,221],[1708738549000,221],[1708738550000,220],[1708738551000,220],[1708738552000,221],[1708738553000,219],[1708738554000,309],[1708738555000,416],[1708738556000,520],[1708738557000,634],[1708738558000,747],[1708738559000,823],[1708738560000,887],[1708738561000,965],[1708738562000,352],[1708738563000,350],[1708738564000,386],[1708738565000,440],[1708738566000,543],[1708738567000,691],[1708738568000,788],[1708738569000,221],[1708738570000,221],[1708738571000,221],[1708738572000,219],[1708738573000,97]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#f15b4f',
name: 'extratos',
data: [
[1708738088000,0],[1708738089000,0],[1708738090000,0],[1708738091000,0],[1708738092000,0],[1708738093000,0],[1708738094000,0],[1708738095000,0],[1708738096000,0],[1708738097000,0],[1708738098000,0],[1708738099000,0],[1708738100000,0],[1708738101000,0],[1708738102000,0],[1708738103000,0],[1708738104000,0],[1708738105000,0],[1708738106000,0],[1708738107000,0],[1708738108000,0],[1708738109000,0],[1708738110000,0],[1708738111000,0],[1708738112000,0],[1708738113000,0],[1708738114000,0],[1708738115000,0],[1708738116000,0],[1708738117000,0],[1708738118000,0],[1708738119000,0],[1708738120000,0],[1708738121000,0],[1708738122000,0],[1708738123000,0],[1708738124000,0],[1708738125000,0],[1708738126000,0],[1708738127000,0],[1708738128000,0],[1708738129000,0],[1708738130000,0],[1708738131000,0],[1708738132000,0],[1708738133000,0],[1708738134000,0],[1708738135000,0],[1708738136000,0],[1708738137000,0],[1708738138000,0],[1708738139000,0],[1708738140000,0],[1708738141000,0],[1708738142000,0],[1708738143000,0],[1708738144000,0],[1708738145000,0],[1708738146000,0],[1708738147000,0],[1708738148000,0],[1708738149000,0],[1708738150000,0],[1708738151000,0],[1708738152000,0],[1708738153000,0],[1708738154000,0],[1708738155000,0],[1708738156000,0],[1708738157000,0],[1708738158000,0],[1708738159000,0],[1708738160000,0],[1708738161000,0],[1708738162000,0],[1708738163000,0],[1708738164000,0],[1708738165000,0],[1708738166000,0],[1708738167000,0],[1708738168000,0],[1708738169000,0],[1708738170000,0],[1708738171000,0],[1708738172000,0],[1708738173000,0],[1708738174000,0],[1708738175000,0],[1708738176000,0],[1708738177000,0],[1708738178000,0],[1708738179000,0],[1708738180000,0],[1708738181000,0],[1708738182000,0],[1708738183000,0],[1708738184000,0],[1708738185000,0],[1708738186000,0],[1708738187000,0],[1708738188000,0],[1708738189000,0],[1708738190000,0],[1708738191000,0],[1708738192000,0],[1708738193000,0],[1708738194000,0],[1708738195000,0],[1708738196000,0],[1708738197000,0],[1708738198000,0],[1708738199000,0],[1708738200000,0],[1708738201000,0],[1708738202000,0],[1708738203000,0],[1708738204000,0],[1708738205000,0],[1708738206000,0],[1708738207000,0],[1708738208000,0],[1708738209000,0],[1708738210000,0],[1708738211000,0],[1708738212000,0],[1708738213000,0],[1708738214000,0],[1708738215000,0],[1708738216000,0],[1708738217000,0],[1708738218000,0],[1708738219000,0],[1708738220000,0],[1708738221000,0],[1708738222000,0],[1708738223000,0],[1708738224000,0],[1708738225000,0],[1708738226000,0],[1708738227000,0],[1708738228000,0],[1708738229000,0],[1708738230000,0],[1708738231000,0],[1708738232000,0],[1708738233000,0],[1708738234000,0],[1708738235000,0],[1708738236000,0],[1708738237000,0],[1708738238000,0],[1708738239000,0],[1708738240000,0],[1708738241000,0],[1708738242000,0],[1708738243000,0],[1708738244000,0],[1708738245000,0],[1708738246000,0],[1708738247000,0],[1708738248000,0],[1708738249000,0],[1708738250000,0],[1708738251000,0],[1708738252000,0],[1708738253000,0],[1708738254000,0],[1708738255000,0],[1708738256000,0],[1708738257000,0],[1708738258000,0],[1708738259000,0],[1708738260000,0],[1708738261000,0],[1708738262000,0],[1708738263000,0],[1708738264000,0],[1708738265000,0],[1708738266000,0],[1708738267000,0],[1708738268000,0],[1708738269000,0],[1708738270000,0],[1708738271000,0],[1708738272000,0],[1708738273000,0],[1708738274000,0],[1708738275000,0],[1708738276000,0],[1708738277000,0],[1708738278000,0],[1708738279000,0],[1708738280000,0],[1708738281000,0],[1708738282000,0],[1708738283000,0],[1708738284000,0],[1708738285000,0],[1708738286000,0],[1708738287000,0],[1708738288000,0],[1708738289000,0],[1708738290000,0],[1708738291000,0],[1708738292000,0],[1708738293000,0],[1708738294000,0],[1708738295000,0],[1708738296000,0],[1708738297000,0],[1708738298000,0],[1708738299000,0],[1708738300000,0],[1708738301000,0],[1708738302000,0],[1708738303000,0],[1708738304000,0],[1708738305000,0],[1708738306000,0],[1708738307000,0],[1708738308000,0],[1708738309000,0],[1708738310000,0],[1708738311000,0],[1708738312000,0],[1708738313000,0],[1708738314000,0],[1708738315000,0],[1708738316000,0],[1708738317000,0],[1708738318000,0],[1708738319000,0],[1708738320000,0],[1708738321000,0],[1708738322000,0],[1708738323000,0],[1708738324000,0],[1708738325000,0],[1708738326000,0],[1708738327000,0],[1708738328000,0],[1708738329000,0],[1708738330000,0],[1708738331000,0],[1708738332000,1],[1708738333000,2],[1708738334000,2],[1708738335000,3],[1708738336000,3],[1708738337000,3],[1708738338000,5],[1708738339000,4],[1708738340000,5],[1708738341000,7],[1708738342000,6],[1708738343000,8],[1708738344000,8],[1708738345000,8],[1708738346000,8],[1708738347000,9],[1708738348000,9],[1708738349000,10],[1708738350000,12],[1708738351000,13],[1708738352000,14],[1708738353000,15],[1708738354000,16],[1708738355000,16],[1708738356000,17],[1708738357000,19],[1708738358000,20],[1708738359000,21],[1708738360000,21],[1708738361000,22],[1708738362000,23],[1708738363000,24],[1708738364000,24],[1708738365000,25],[1708738366000,26],[1708738367000,25],[1708738368000,27],[1708738369000,30],[1708738370000,30],[1708738371000,31],[1708738372000,32],[1708738373000,34],[1708738374000,35],[1708738375000,36],[1708738376000,36],[1708738377000,38],[1708738378000,41],[1708738379000,40],[1708738380000,43],[1708738381000,43],[1708738382000,44],[1708738383000,45],[1708738384000,45],[1708738385000,46],[1708738386000,5],[1708738387000,5],[1708738388000,5],[1708738389000,5],[1708738390000,7],[1708738391000,5],[1708738392000,6],[1708738393000,5],[1708738394000,6],[1708738395000,5],[1708738396000,7],[1708738397000,7],[1708738398000,9],[1708738399000,11],[1708738400000,12],[1708738401000,12],[1708738402000,12],[1708738403000,14],[1708738404000,13],[1708738405000,15],[1708738406000,19],[1708738407000,19],[1708738408000,21],[1708738409000,22],[1708738410000,24],[1708738411000,26],[1708738412000,26],[1708738413000,28],[1708738414000,28],[1708738415000,28],[1708738416000,28],[1708738417000,28],[1708738418000,30],[1708738419000,30],[1708738420000,30],[1708738421000,30],[1708738422000,35],[1708738423000,35],[1708738424000,35],[1708738425000,34],[1708738426000,33],[1708738427000,34],[1708738428000,34],[1708738429000,36],[1708738430000,38],[1708738431000,38],[1708738432000,42],[1708738433000,37],[1708738434000,36],[1708738435000,35],[1708738436000,36],[1708738437000,36],[1708738438000,36],[1708738439000,36],[1708738440000,36],[1708738441000,36],[1708738442000,36],[1708738443000,37],[1708738444000,36],[1708738445000,36],[1708738446000,37],[1708738447000,36],[1708738448000,37],[1708738449000,37],[1708738450000,37],[1708738451000,37],[1708738452000,37],[1708738453000,37],[1708738454000,37],[1708738455000,37],[1708738456000,40],[1708738457000,41],[1708738458000,38],[1708738459000,38],[1708738460000,37],[1708738461000,35],[1708738462000,21],[1708738463000,27],[1708738464000,33],[1708738465000,10],[1708738466000,10],[1708738467000,10],[1708738468000,10],[1708738469000,10],[1708738470000,10],[1708738471000,11],[1708738472000,16],[1708738473000,22],[1708738474000,31],[1708738475000,37],[1708738476000,41],[1708738477000,43],[1708738478000,49],[1708738479000,54],[1708738480000,55],[1708738481000,61],[1708738482000,64],[1708738483000,64],[1708738484000,59],[1708738485000,36],[1708738486000,10],[1708738487000,10],[1708738488000,10],[1708738489000,10],[1708738490000,10],[1708738491000,10],[1708738492000,10],[1708738493000,10],[1708738494000,10],[1708738495000,10],[1708738496000,15],[1708738497000,22],[1708738498000,26],[1708738499000,31],[1708738500000,35],[1708738501000,42],[1708738502000,47],[1708738503000,53],[1708738504000,60],[1708738505000,30],[1708738506000,38],[1708738507000,39],[1708738508000,45],[1708738509000,53],[1708738510000,10],[1708738511000,10],[1708738512000,10],[1708738513000,10],[1708738514000,10],[1708738515000,10],[1708738516000,16],[1708738517000,24],[1708738518000,29],[1708738519000,36],[1708738520000,42],[1708738521000,51],[1708738522000,18],[1708738523000,23],[1708738524000,27],[1708738525000,34],[1708738526000,44],[1708738527000,10],[1708738528000,10],[1708738529000,10],[1708738530000,10],[1708738531000,10],[1708738532000,10],[1708738533000,16],[1708738534000,20],[1708738535000,26],[1708738536000,31],[1708738537000,38],[1708738538000,45],[1708738539000,51],[1708738540000,57],[1708738541000,59],[1708738542000,54],[1708738543000,45],[1708738544000,51],[1708738545000,58],[1708738546000,12],[1708738547000,10],[1708738548000,10],[1708738549000,10],[1708738550000,10],[1708738551000,10],[1708738552000,10],[1708738553000,11],[1708738554000,15],[1708738555000,21],[1708738556000,27],[1708738557000,35],[1708738558000,41],[1708738559000,47],[1708738560000,50],[1708738561000,54],[1708738562000,24],[1708738563000,21],[1708738564000,22],[1708738565000,24],[1708738566000,29],[1708738567000,34],[1708738568000,42],[1708738569000,10],[1708738570000,10],[1708738571000,10],[1708738572000,10],[1708738573000,6]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FFDD00',
name: 'validações',
data: [
[1708738088000,0],[1708738089000,0],[1708738090000,0],[1708738091000,0],[1708738092000,0],[1708738093000,0],[1708738094000,0],[1708738095000,0],[1708738096000,0],[1708738097000,0],[1708738098000,0],[1708738099000,0],[1708738100000,0],[1708738101000,0],[1708738102000,0],[1708738103000,0],[1708738104000,0],[1708738105000,0],[1708738106000,0],[1708738107000,0],[1708738108000,0],[1708738109000,0],[1708738110000,0],[1708738111000,0],[1708738112000,0],[1708738113000,0],[1708738114000,0],[1708738115000,0],[1708738116000,0],[1708738117000,0],[1708738118000,0],[1708738119000,0],[1708738120000,0],[1708738121000,0],[1708738122000,0],[1708738123000,0],[1708738124000,0],[1708738125000,0],[1708738126000,0],[1708738127000,0],[1708738128000,0],[1708738129000,0],[1708738130000,0],[1708738131000,0],[1708738132000,0],[1708738133000,0],[1708738134000,0],[1708738135000,0],[1708738136000,0],[1708738137000,0],[1708738138000,0],[1708738139000,0],[1708738140000,0],[1708738141000,0],[1708738142000,0],[1708738143000,0],[1708738144000,0],[1708738145000,0],[1708738146000,0],[1708738147000,0],[1708738148000,0],[1708738149000,0],[1708738150000,0],[1708738151000,0],[1708738152000,0],[1708738153000,0],[1708738154000,0],[1708738155000,0],[1708738156000,0],[1708738157000,0],[1708738158000,0],[1708738159000,0],[1708738160000,0],[1708738161000,0],[1708738162000,0],[1708738163000,0],[1708738164000,0],[1708738165000,0],[1708738166000,0],[1708738167000,0],[1708738168000,0],[1708738169000,0],[1708738170000,0],[1708738171000,0],[1708738172000,0],[1708738173000,0],[1708738174000,0],[1708738175000,0],[1708738176000,0],[1708738177000,0],[1708738178000,0],[1708738179000,0],[1708738180000,0],[1708738181000,0],[1708738182000,0],[1708738183000,0],[1708738184000,0],[1708738185000,0],[1708738186000,0],[1708738187000,0],[1708738188000,0],[1708738189000,0],[1708738190000,0],[1708738191000,0],[1708738192000,0],[1708738193000,0],[1708738194000,0],[1708738195000,0],[1708738196000,0],[1708738197000,0],[1708738198000,0],[1708738199000,0],[1708738200000,0],[1708738201000,0],[1708738202000,0],[1708738203000,0],[1708738204000,0],[1708738205000,0],[1708738206000,0],[1708738207000,0],[1708738208000,0],[1708738209000,0],[1708738210000,0],[1708738211000,0],[1708738212000,0],[1708738213000,0],[1708738214000,0],[1708738215000,0],[1708738216000,0],[1708738217000,0],[1708738218000,0],[1708738219000,0],[1708738220000,0],[1708738221000,0],[1708738222000,0],[1708738223000,0],[1708738224000,0],[1708738225000,0],[1708738226000,0],[1708738227000,0],[1708738228000,0],[1708738229000,0],[1708738230000,0],[1708738231000,0],[1708738232000,0],[1708738233000,0],[1708738234000,0],[1708738235000,0],[1708738236000,0],[1708738237000,0],[1708738238000,0],[1708738239000,0],[1708738240000,0],[1708738241000,0],[1708738242000,0],[1708738243000,0],[1708738244000,0],[1708738245000,0],[1708738246000,0],[1708738247000,0],[1708738248000,0],[1708738249000,0],[1708738250000,0],[1708738251000,0],[1708738252000,0],[1708738253000,0],[1708738254000,0],[1708738255000,0],[1708738256000,0],[1708738257000,0],[1708738258000,0],[1708738259000,0],[1708738260000,0],[1708738261000,0],[1708738262000,0],[1708738263000,0],[1708738264000,0],[1708738265000,0],[1708738266000,0],[1708738267000,0],[1708738268000,0],[1708738269000,0],[1708738270000,0],[1708738271000,5],[1708738272000,5],[1708738273000,5],[1708738274000,5],[1708738275000,5],[1708738276000,5],[1708738277000,5],[1708738278000,5],[1708738279000,5],[1708738280000,5],[1708738281000,5],[1708738282000,5],[1708738283000,5],[1708738284000,5],[1708738285000,5],[1708738286000,5],[1708738287000,5],[1708738288000,5],[1708738289000,5],[1708738290000,5],[1708738291000,5],[1708738292000,5],[1708738293000,5],[1708738294000,5],[1708738295000,5],[1708738296000,5],[1708738297000,5],[1708738298000,5],[1708738299000,5],[1708738300000,5],[1708738301000,5],[1708738302000,5],[1708738303000,5],[1708738304000,5],[1708738305000,5],[1708738306000,5],[1708738307000,5],[1708738308000,5],[1708738309000,5],[1708738310000,5],[1708738311000,5],[1708738312000,5],[1708738313000,5],[1708738314000,5],[1708738315000,5],[1708738316000,5],[1708738317000,5],[1708738318000,5],[1708738319000,5],[1708738320000,5],[1708738321000,5],[1708738322000,5],[1708738323000,5],[1708738324000,5],[1708738325000,5],[1708738326000,5],[1708738327000,5],[1708738328000,5],[1708738329000,5],[1708738330000,5],[1708738331000,5],[1708738332000,5],[1708738333000,5],[1708738334000,5],[1708738335000,5],[1708738336000,5],[1708738337000,5],[1708738338000,5],[1708738339000,5],[1708738340000,5],[1708738341000,5],[1708738342000,5],[1708738343000,5],[1708738344000,5],[1708738345000,5],[1708738346000,5],[1708738347000,5],[1708738348000,5],[1708738349000,5],[1708738350000,5],[1708738351000,5],[1708738352000,5],[1708738353000,5],[1708738354000,5],[1708738355000,5],[1708738356000,5],[1708738357000,5],[1708738358000,5],[1708738359000,5],[1708738360000,5],[1708738361000,5],[1708738362000,5],[1708738363000,5],[1708738364000,5],[1708738365000,5],[1708738366000,5],[1708738367000,5],[1708738368000,5],[1708738369000,5],[1708738370000,5],[1708738371000,5],[1708738372000,5],[1708738373000,5],[1708738374000,5],[1708738375000,5],[1708738376000,5],[1708738377000,5],[1708738378000,5],[1708738379000,5],[1708738380000,5],[1708738381000,5],[1708738382000,5],[1708738383000,5],[1708738384000,5],[1708738385000,5],[1708738386000,0],[1708738387000,0],[1708738388000,0],[1708738389000,0],[1708738390000,0],[1708738391000,0],[1708738392000,0],[1708738393000,0],[1708738394000,0],[1708738395000,0],[1708738396000,0],[1708738397000,0],[1708738398000,0],[1708738399000,0],[1708738400000,0],[1708738401000,0],[1708738402000,0],[1708738403000,0],[1708738404000,0],[1708738405000,0],[1708738406000,0],[1708738407000,0],[1708738408000,0],[1708738409000,0],[1708738410000,0],[1708738411000,0],[1708738412000,0],[1708738413000,0],[1708738414000,0],[1708738415000,0],[1708738416000,0],[1708738417000,0],[1708738418000,0],[1708738419000,0],[1708738420000,0],[1708738421000,0],[1708738422000,0],[1708738423000,0],[1708738424000,0],[1708738425000,0],[1708738426000,0],[1708738427000,0],[1708738428000,0],[1708738429000,0],[1708738430000,0],[1708738431000,0],[1708738432000,0],[1708738433000,0],[1708738434000,0],[1708738435000,0],[1708738436000,0],[1708738437000,0],[1708738438000,0],[1708738439000,0],[1708738440000,0],[1708738441000,0],[1708738442000,0],[1708738443000,0],[1708738444000,0],[1708738445000,0],[1708738446000,0],[1708738447000,0],[1708738448000,0],[1708738449000,0],[1708738450000,0],[1708738451000,0],[1708738452000,0],[1708738453000,0],[1708738454000,0],[1708738455000,0],[1708738456000,0],[1708738457000,0],[1708738458000,0],[1708738459000,0],[1708738460000,0],[1708738461000,0],[1708738462000,0],[1708738463000,0],[1708738464000,0],[1708738465000,0],[1708738466000,0],[1708738467000,0],[1708738468000,0],[1708738469000,0],[1708738470000,0],[1708738471000,0],[1708738472000,0],[1708738473000,0],[1708738474000,0],[1708738475000,0],[1708738476000,0],[1708738477000,0],[1708738478000,0],[1708738479000,0],[1708738480000,0],[1708738481000,0],[1708738482000,0],[1708738483000,0],[1708738484000,0],[1708738485000,0],[1708738486000,0],[1708738487000,0],[1708738488000,0],[1708738489000,0],[1708738490000,0],[1708738491000,0],[1708738492000,0],[1708738493000,0],[1708738494000,0],[1708738495000,0],[1708738496000,0],[1708738497000,0],[1708738498000,0],[1708738499000,0],[1708738500000,0],[1708738501000,0],[1708738502000,0],[1708738503000,0],[1708738504000,0],[1708738505000,0],[1708738506000,0],[1708738507000,0],[1708738508000,0],[1708738509000,0],[1708738510000,0],[1708738511000,0],[1708738512000,0],[1708738513000,0],[1708738514000,0],[1708738515000,0],[1708738516000,0],[1708738517000,0],[1708738518000,0],[1708738519000,0],[1708738520000,0],[1708738521000,0],[1708738522000,0],[1708738523000,0],[1708738524000,0],[1708738525000,0],[1708738526000,0],[1708738527000,0],[1708738528000,0],[1708738529000,0],[1708738530000,0],[1708738531000,0],[1708738532000,0],[1708738533000,0],[1708738534000,0],[1708738535000,0],[1708738536000,0],[1708738537000,0],[1708738538000,0],[1708738539000,0],[1708738540000,0],[1708738541000,0],[1708738542000,0],[1708738543000,0],[1708738544000,0],[1708738545000,0],[1708738546000,0],[1708738547000,0],[1708738548000,0],[1708738549000,0],[1708738550000,0],[1708738551000,0],[1708738552000,0],[1708738553000,0],[1708738554000,0],[1708738555000,0],[1708738556000,0],[1708738557000,0],[1708738558000,0],[1708738559000,0],[1708738560000,0],[1708738561000,0],[1708738562000,0],[1708738563000,0],[1708738564000,0],[1708738565000,0],[1708738566000,0],[1708738567000,0],[1708738568000,0],[1708738569000,0],[1708738570000,0],[1708738571000,0],[1708738572000,0],[1708738573000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00D5FF',
name: 'validação HTTP 404',
data: [
[1708738088000,0],[1708738089000,0],[1708738090000,0],[1708738091000,0],[1708738092000,0],[1708738093000,0],[1708738094000,0],[1708738095000,0],[1708738096000,0],[1708738097000,0],[1708738098000,0],[1708738099000,0],[1708738100000,0],[1708738101000,0],[1708738102000,0],[1708738103000,0],[1708738104000,0],[1708738105000,0],[1708738106000,0],[1708738107000,0],[1708738108000,0],[1708738109000,0],[1708738110000,0],[1708738111000,0],[1708738112000,0],[1708738113000,0],[1708738114000,0],[1708738115000,0],[1708738116000,0],[1708738117000,0],[1708738118000,0],[1708738119000,0],[1708738120000,0],[1708738121000,0],[1708738122000,0],[1708738123000,0],[1708738124000,0],[1708738125000,0],[1708738126000,0],[1708738127000,0],[1708738128000,0],[1708738129000,0],[1708738130000,0],[1708738131000,0],[1708738132000,0],[1708738133000,0],[1708738134000,0],[1708738135000,0],[1708738136000,0],[1708738137000,0],[1708738138000,0],[1708738139000,0],[1708738140000,0],[1708738141000,0],[1708738142000,0],[1708738143000,0],[1708738144000,0],[1708738145000,0],[1708738146000,0],[1708738147000,0],[1708738148000,0],[1708738149000,0],[1708738150000,0],[1708738151000,0],[1708738152000,0],[1708738153000,0],[1708738154000,0],[1708738155000,0],[1708738156000,0],[1708738157000,0],[1708738158000,0],[1708738159000,0],[1708738160000,0],[1708738161000,0],[1708738162000,0],[1708738163000,0],[1708738164000,0],[1708738165000,0],[1708738166000,0],[1708738167000,0],[1708738168000,0],[1708738169000,0],[1708738170000,0],[1708738171000,0],[1708738172000,0],[1708738173000,0],[1708738174000,0],[1708738175000,0],[1708738176000,0],[1708738177000,0],[1708738178000,0],[1708738179000,0],[1708738180000,0],[1708738181000,0],[1708738182000,0],[1708738183000,0],[1708738184000,0],[1708738185000,0],[1708738186000,0],[1708738187000,0],[1708738188000,0],[1708738189000,0],[1708738190000,0],[1708738191000,0],[1708738192000,0],[1708738193000,0],[1708738194000,0],[1708738195000,0],[1708738196000,0],[1708738197000,0],[1708738198000,0],[1708738199000,0],[1708738200000,0],[1708738201000,0],[1708738202000,0],[1708738203000,0],[1708738204000,0],[1708738205000,0],[1708738206000,0],[1708738207000,0],[1708738208000,0],[1708738209000,0],[1708738210000,0],[1708738211000,0],[1708738212000,0],[1708738213000,0],[1708738214000,0],[1708738215000,0],[1708738216000,0],[1708738217000,0],[1708738218000,0],[1708738219000,0],[1708738220000,0],[1708738221000,0],[1708738222000,0],[1708738223000,0],[1708738224000,0],[1708738225000,0],[1708738226000,0],[1708738227000,0],[1708738228000,0],[1708738229000,0],[1708738230000,0],[1708738231000,0],[1708738232000,0],[1708738233000,0],[1708738234000,0],[1708738235000,0],[1708738236000,0],[1708738237000,0],[1708738238000,0],[1708738239000,0],[1708738240000,0],[1708738241000,0],[1708738242000,0],[1708738243000,0],[1708738244000,0],[1708738245000,0],[1708738246000,0],[1708738247000,0],[1708738248000,0],[1708738249000,0],[1708738250000,0],[1708738251000,0],[1708738252000,0],[1708738253000,0],[1708738254000,0],[1708738255000,0],[1708738256000,0],[1708738257000,0],[1708738258000,0],[1708738259000,0],[1708738260000,0],[1708738261000,0],[1708738262000,0],[1708738263000,0],[1708738264000,0],[1708738265000,0],[1708738266000,0],[1708738267000,0],[1708738268000,0],[1708738269000,0],[1708738270000,0],[1708738271000,1],[1708738272000,1],[1708738273000,1],[1708738274000,1],[1708738275000,1],[1708738276000,1],[1708738277000,1],[1708738278000,1],[1708738279000,1],[1708738280000,1],[1708738281000,1],[1708738282000,1],[1708738283000,1],[1708738284000,1],[1708738285000,1],[1708738286000,1],[1708738287000,1],[1708738288000,1],[1708738289000,1],[1708738290000,1],[1708738291000,1],[1708738292000,1],[1708738293000,1],[1708738294000,1],[1708738295000,1],[1708738296000,1],[1708738297000,1],[1708738298000,1],[1708738299000,1],[1708738300000,1],[1708738301000,1],[1708738302000,1],[1708738303000,1],[1708738304000,1],[1708738305000,1],[1708738306000,1],[1708738307000,1],[1708738308000,1],[1708738309000,1],[1708738310000,1],[1708738311000,1],[1708738312000,1],[1708738313000,1],[1708738314000,1],[1708738315000,1],[1708738316000,1],[1708738317000,1],[1708738318000,1],[1708738319000,1],[1708738320000,1],[1708738321000,1],[1708738322000,1],[1708738323000,1],[1708738324000,1],[1708738325000,1],[1708738326000,1],[1708738327000,1],[1708738328000,1],[1708738329000,1],[1708738330000,1],[1708738331000,1],[1708738332000,0],[1708738333000,0],[1708738334000,0],[1708738335000,0],[1708738336000,0],[1708738337000,0],[1708738338000,0],[1708738339000,0],[1708738340000,0],[1708738341000,0],[1708738342000,0],[1708738343000,0],[1708738344000,0],[1708738345000,0],[1708738346000,0],[1708738347000,0],[1708738348000,0],[1708738349000,0],[1708738350000,0],[1708738351000,0],[1708738352000,0],[1708738353000,0],[1708738354000,0],[1708738355000,0],[1708738356000,0],[1708738357000,0],[1708738358000,0],[1708738359000,0],[1708738360000,0],[1708738361000,0],[1708738362000,0],[1708738363000,0],[1708738364000,0],[1708738365000,0],[1708738366000,0],[1708738367000,0],[1708738368000,0],[1708738369000,0],[1708738370000,0],[1708738371000,0],[1708738372000,0],[1708738373000,0],[1708738374000,0],[1708738375000,0],[1708738376000,0],[1708738377000,0],[1708738378000,0],[1708738379000,0],[1708738380000,0],[1708738381000,0],[1708738382000,0],[1708738383000,0],[1708738384000,0],[1708738385000,0],[1708738386000,0],[1708738387000,0],[1708738388000,0],[1708738389000,0],[1708738390000,0],[1708738391000,0],[1708738392000,0],[1708738393000,0],[1708738394000,0],[1708738395000,0],[1708738396000,0],[1708738397000,0],[1708738398000,0],[1708738399000,0],[1708738400000,0],[1708738401000,0],[1708738402000,0],[1708738403000,0],[1708738404000,0],[1708738405000,0],[1708738406000,0],[1708738407000,0],[1708738408000,0],[1708738409000,0],[1708738410000,0],[1708738411000,0],[1708738412000,0],[1708738413000,0],[1708738414000,0],[1708738415000,0],[1708738416000,0],[1708738417000,0],[1708738418000,0],[1708738419000,0],[1708738420000,0],[1708738421000,0],[1708738422000,0],[1708738423000,0],[1708738424000,0],[1708738425000,0],[1708738426000,0],[1708738427000,0],[1708738428000,0],[1708738429000,0],[1708738430000,0],[1708738431000,0],[1708738432000,0],[1708738433000,0],[1708738434000,0],[1708738435000,0],[1708738436000,0],[1708738437000,0],[1708738438000,0],[1708738439000,0],[1708738440000,0],[1708738441000,0],[1708738442000,0],[1708738443000,0],[1708738444000,0],[1708738445000,0],[1708738446000,0],[1708738447000,0],[1708738448000,0],[1708738449000,0],[1708738450000,0],[1708738451000,0],[1708738452000,0],[1708738453000,0],[1708738454000,0],[1708738455000,0],[1708738456000,0],[1708738457000,0],[1708738458000,0],[1708738459000,0],[1708738460000,0],[1708738461000,0],[1708738462000,0],[1708738463000,0],[1708738464000,0],[1708738465000,0],[1708738466000,0],[1708738467000,0],[1708738468000,0],[1708738469000,0],[1708738470000,0],[1708738471000,0],[1708738472000,0],[1708738473000,0],[1708738474000,0],[1708738475000,0],[1708738476000,0],[1708738477000,0],[1708738478000,0],[1708738479000,0],[1708738480000,0],[1708738481000,0],[1708738482000,0],[1708738483000,0],[1708738484000,0],[1708738485000,0],[1708738486000,0],[1708738487000,0],[1708738488000,0],[1708738489000,0],[1708738490000,0],[1708738491000,0],[1708738492000,0],[1708738493000,0],[1708738494000,0],[1708738495000,0],[1708738496000,0],[1708738497000,0],[1708738498000,0],[1708738499000,0],[1708738500000,0],[1708738501000,0],[1708738502000,0],[1708738503000,0],[1708738504000,0],[1708738505000,0],[1708738506000,0],[1708738507000,0],[1708738508000,0],[1708738509000,0],[1708738510000,0],[1708738511000,0],[1708738512000,0],[1708738513000,0],[1708738514000,0],[1708738515000,0],[1708738516000,0],[1708738517000,0],[1708738518000,0],[1708738519000,0],[1708738520000,0],[1708738521000,0],[1708738522000,0],[1708738523000,0],[1708738524000,0],[1708738525000,0],[1708738526000,0],[1708738527000,0],[1708738528000,0],[1708738529000,0],[1708738530000,0],[1708738531000,0],[1708738532000,0],[1708738533000,0],[1708738534000,0],[1708738535000,0],[1708738536000,0],[1708738537000,0],[1708738538000,0],[1708738539000,0],[1708738540000,0],[1708738541000,0],[1708738542000,0],[1708738543000,0],[1708738544000,0],[1708738545000,0],[1708738546000,0],[1708738547000,0],[1708738548000,0],[1708738549000,0],[1708738550000,0],[1708738551000,0],[1708738552000,0],[1708738553000,0],[1708738554000,0],[1708738555000,0],[1708738556000,0],[1708738557000,0],[1708738558000,0],[1708738559000,0],[1708738560000,0],[1708738561000,0],[1708738562000,0],[1708738563000,0],[1708738564000,0],[1708738565000,0],[1708738566000,0],[1708738567000,0],[1708738568000,0],[1708738569000,0],[1708738570000,0],[1708738571000,0],[1708738572000,0],[1708738573000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#00FF00',
name: 'validação concorrência saldo - 0',
data: [
[1708738088000,0],[1708738089000,0],[1708738090000,0],[1708738091000,0],[1708738092000,0],[1708738093000,0],[1708738094000,0],[1708738095000,0],[1708738096000,0],[1708738097000,0],[1708738098000,0],[1708738099000,0],[1708738100000,0],[1708738101000,0],[1708738102000,0],[1708738103000,0],[1708738104000,0],[1708738105000,0],[1708738106000,0],[1708738107000,0],[1708738108000,0],[1708738109000,0],[1708738110000,0],[1708738111000,0],[1708738112000,0],[1708738113000,0],[1708738114000,0],[1708738115000,0],[1708738116000,0],[1708738117000,0],[1708738118000,0],[1708738119000,0],[1708738120000,0],[1708738121000,0],[1708738122000,0],[1708738123000,0],[1708738124000,0],[1708738125000,0],[1708738126000,0],[1708738127000,0],[1708738128000,0],[1708738129000,0],[1708738130000,0],[1708738131000,0],[1708738132000,0],[1708738133000,0],[1708738134000,0],[1708738135000,0],[1708738136000,0],[1708738137000,0],[1708738138000,0],[1708738139000,0],[1708738140000,0],[1708738141000,0],[1708738142000,0],[1708738143000,0],[1708738144000,0],[1708738145000,0],[1708738146000,0],[1708738147000,0],[1708738148000,0],[1708738149000,0],[1708738150000,0],[1708738151000,0],[1708738152000,0],[1708738153000,0],[1708738154000,0],[1708738155000,0],[1708738156000,0],[1708738157000,0],[1708738158000,0],[1708738159000,0],[1708738160000,0],[1708738161000,0],[1708738162000,0],[1708738163000,0],[1708738164000,0],[1708738165000,0],[1708738166000,0],[1708738167000,0],[1708738168000,0],[1708738169000,0],[1708738170000,0],[1708738171000,0],[1708738172000,0],[1708738173000,0],[1708738174000,0],[1708738175000,0],[1708738176000,0],[1708738177000,0],[1708738178000,0],[1708738179000,0],[1708738180000,0],[1708738181000,0],[1708738182000,0],[1708738183000,0],[1708738184000,0],[1708738185000,0],[1708738186000,0],[1708738187000,0],[1708738188000,0],[1708738189000,0],[1708738190000,0],[1708738191000,0],[1708738192000,0],[1708738193000,0],[1708738194000,0],[1708738195000,0],[1708738196000,0],[1708738197000,0],[1708738198000,0],[1708738199000,0],[1708738200000,0],[1708738201000,0],[1708738202000,0],[1708738203000,0],[1708738204000,0],[1708738205000,0],[1708738206000,0],[1708738207000,0],[1708738208000,0],[1708738209000,0],[1708738210000,0],[1708738211000,0],[1708738212000,0],[1708738213000,0],[1708738214000,0],[1708738215000,0],[1708738216000,0],[1708738217000,0],[1708738218000,0],[1708738219000,0],[1708738220000,0],[1708738221000,0],[1708738222000,0],[1708738223000,0],[1708738224000,0],[1708738225000,0],[1708738226000,0],[1708738227000,0],[1708738228000,0],[1708738229000,0],[1708738230000,0],[1708738231000,0],[1708738232000,0],[1708738233000,0],[1708738234000,0],[1708738235000,0],[1708738236000,0],[1708738237000,0],[1708738238000,0],[1708738239000,0],[1708738240000,0],[1708738241000,0],[1708738242000,0],[1708738243000,0],[1708738244000,0],[1708738245000,0],[1708738246000,0],[1708738247000,0],[1708738248000,0],[1708738249000,0],[1708738250000,0],[1708738251000,0],[1708738252000,0],[1708738253000,0],[1708738254000,0],[1708738255000,0],[1708738256000,0],[1708738257000,0],[1708738258000,0],[1708738259000,0],[1708738260000,0],[1708738261000,0],[1708738262000,0],[1708738263000,0],[1708738264000,0],[1708738265000,0],[1708738266000,0],[1708738267000,0],[1708738268000,0],[1708738269000,0],[1708738270000,1],[1708738271000,1],[1708738272000,0],[1708738273000,0],[1708738274000,0],[1708738275000,0],[1708738276000,0],[1708738277000,0],[1708738278000,0],[1708738279000,0],[1708738280000,0],[1708738281000,0],[1708738282000,0],[1708738283000,0],[1708738284000,0],[1708738285000,0],[1708738286000,0],[1708738287000,0],[1708738288000,0],[1708738289000,0],[1708738290000,0],[1708738291000,0],[1708738292000,0],[1708738293000,0],[1708738294000,0],[1708738295000,0],[1708738296000,0],[1708738297000,0],[1708738298000,0],[1708738299000,0],[1708738300000,0],[1708738301000,0],[1708738302000,0],[1708738303000,0],[1708738304000,0],[1708738305000,0],[1708738306000,0],[1708738307000,0],[1708738308000,0],[1708738309000,0],[1708738310000,0],[1708738311000,0],[1708738312000,0],[1708738313000,0],[1708738314000,0],[1708738315000,0],[1708738316000,0],[1708738317000,0],[1708738318000,0],[1708738319000,0],[1708738320000,0],[1708738321000,0],[1708738322000,0],[1708738323000,0],[1708738324000,0],[1708738325000,0],[1708738326000,0],[1708738327000,0],[1708738328000,0],[1708738329000,0],[1708738330000,0],[1708738331000,0],[1708738332000,0],[1708738333000,0],[1708738334000,0],[1708738335000,0],[1708738336000,0],[1708738337000,0],[1708738338000,0],[1708738339000,0],[1708738340000,0],[1708738341000,0],[1708738342000,0],[1708738343000,0],[1708738344000,0],[1708738345000,0],[1708738346000,0],[1708738347000,0],[1708738348000,0],[1708738349000,0],[1708738350000,0],[1708738351000,0],[1708738352000,0],[1708738353000,0],[1708738354000,0],[1708738355000,0],[1708738356000,0],[1708738357000,0],[1708738358000,0],[1708738359000,0],[1708738360000,0],[1708738361000,0],[1708738362000,0],[1708738363000,0],[1708738364000,0],[1708738365000,0],[1708738366000,0],[1708738367000,0],[1708738368000,0],[1708738369000,0],[1708738370000,0],[1708738371000,0],[1708738372000,0],[1708738373000,0],[1708738374000,0],[1708738375000,0],[1708738376000,0],[1708738377000,0],[1708738378000,0],[1708738379000,0],[1708738380000,0],[1708738381000,0],[1708738382000,0],[1708738383000,0],[1708738384000,0],[1708738385000,0],[1708738386000,0],[1708738387000,0],[1708738388000,0],[1708738389000,0],[1708738390000,0],[1708738391000,0],[1708738392000,0],[1708738393000,0],[1708738394000,0],[1708738395000,0],[1708738396000,0],[1708738397000,0],[1708738398000,0],[1708738399000,0],[1708738400000,0],[1708738401000,0],[1708738402000,0],[1708738403000,0],[1708738404000,0],[1708738405000,0],[1708738406000,0],[1708738407000,0],[1708738408000,0],[1708738409000,0],[1708738410000,0],[1708738411000,0],[1708738412000,0],[1708738413000,0],[1708738414000,0],[1708738415000,0],[1708738416000,0],[1708738417000,0],[1708738418000,0],[1708738419000,0],[1708738420000,0],[1708738421000,0],[1708738422000,0],[1708738423000,0],[1708738424000,0],[1708738425000,0],[1708738426000,0],[1708738427000,0],[1708738428000,0],[1708738429000,0],[1708738430000,0],[1708738431000,0],[1708738432000,0],[1708738433000,0],[1708738434000,0],[1708738435000,0],[1708738436000,0],[1708738437000,0],[1708738438000,0],[1708738439000,0],[1708738440000,0],[1708738441000,0],[1708738442000,0],[1708738443000,0],[1708738444000,0],[1708738445000,0],[1708738446000,0],[1708738447000,0],[1708738448000,0],[1708738449000,0],[1708738450000,0],[1708738451000,0],[1708738452000,0],[1708738453000,0],[1708738454000,0],[1708738455000,0],[1708738456000,0],[1708738457000,0],[1708738458000,0],[1708738459000,0],[1708738460000,0],[1708738461000,0],[1708738462000,0],[1708738463000,0],[1708738464000,0],[1708738465000,0],[1708738466000,0],[1708738467000,0],[1708738468000,0],[1708738469000,0],[1708738470000,0],[1708738471000,0],[1708738472000,0],[1708738473000,0],[1708738474000,0],[1708738475000,0],[1708738476000,0],[1708738477000,0],[1708738478000,0],[1708738479000,0],[1708738480000,0],[1708738481000,0],[1708738482000,0],[1708738483000,0],[1708738484000,0],[1708738485000,0],[1708738486000,0],[1708738487000,0],[1708738488000,0],[1708738489000,0],[1708738490000,0],[1708738491000,0],[1708738492000,0],[1708738493000,0],[1708738494000,0],[1708738495000,0],[1708738496000,0],[1708738497000,0],[1708738498000,0],[1708738499000,0],[1708738500000,0],[1708738501000,0],[1708738502000,0],[1708738503000,0],[1708738504000,0],[1708738505000,0],[1708738506000,0],[1708738507000,0],[1708738508000,0],[1708738509000,0],[1708738510000,0],[1708738511000,0],[1708738512000,0],[1708738513000,0],[1708738514000,0],[1708738515000,0],[1708738516000,0],[1708738517000,0],[1708738518000,0],[1708738519000,0],[1708738520000,0],[1708738521000,0],[1708738522000,0],[1708738523000,0],[1708738524000,0],[1708738525000,0],[1708738526000,0],[1708738527000,0],[1708738528000,0],[1708738529000,0],[1708738530000,0],[1708738531000,0],[1708738532000,0],[1708738533000,0],[1708738534000,0],[1708738535000,0],[1708738536000,0],[1708738537000,0],[1708738538000,0],[1708738539000,0],[1708738540000,0],[1708738541000,0],[1708738542000,0],[1708738543000,0],[1708738544000,0],[1708738545000,0],[1708738546000,0],[1708738547000,0],[1708738548000,0],[1708738549000,0],[1708738550000,0],[1708738551000,0],[1708738552000,0],[1708738553000,0],[1708738554000,0],[1708738555000,0],[1708738556000,0],[1708738557000,0],[1708738558000,0],[1708738559000,0],[1708738560000,0],[1708738561000,0],[1708738562000,0],[1708738563000,0],[1708738564000,0],[1708738565000,0],[1708738566000,0],[1708738567000,0],[1708738568000,0],[1708738569000,0],[1708738570000,0],[1708738571000,0],[1708738572000,0],[1708738573000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#9D00FF',
name: 'validação concorrência transações - c',
data: [
[1708738088000,0],[1708738089000,0],[1708738090000,0],[1708738091000,0],[1708738092000,0],[1708738093000,0],[1708738094000,0],[1708738095000,0],[1708738096000,0],[1708738097000,0],[1708738098000,0],[1708738099000,0],[1708738100000,0],[1708738101000,0],[1708738102000,0],[1708738103000,0],[1708738104000,0],[1708738105000,0],[1708738106000,0],[1708738107000,0],[1708738108000,0],[1708738109000,0],[1708738110000,0],[1708738111000,0],[1708738112000,0],[1708738113000,0],[1708738114000,0],[1708738115000,0],[1708738116000,0],[1708738117000,0],[1708738118000,0],[1708738119000,0],[1708738120000,0],[1708738121000,0],[1708738122000,0],[1708738123000,0],[1708738124000,0],[1708738125000,0],[1708738126000,0],[1708738127000,0],[1708738128000,0],[1708738129000,0],[1708738130000,0],[1708738131000,0],[1708738132000,0],[1708738133000,0],[1708738134000,0],[1708738135000,0],[1708738136000,0],[1708738137000,0],[1708738138000,0],[1708738139000,0],[1708738140000,0],[1708738141000,0],[1708738142000,0],[1708738143000,0],[1708738144000,0],[1708738145000,0],[1708738146000,0],[1708738147000,0],[1708738148000,0],[1708738149000,0],[1708738150000,0],[1708738151000,0],[1708738152000,0],[1708738153000,0],[1708738154000,0],[1708738155000,0],[1708738156000,0],[1708738157000,0],[1708738158000,0],[1708738159000,0],[1708738160000,0],[1708738161000,0],[1708738162000,0],[1708738163000,0],[1708738164000,0],[1708738165000,0],[1708738166000,0],[1708738167000,0],[1708738168000,0],[1708738169000,0],[1708738170000,0],[1708738171000,0],[1708738172000,0],[1708738173000,0],[1708738174000,0],[1708738175000,0],[1708738176000,0],[1708738177000,0],[1708738178000,0],[1708738179000,0],[1708738180000,0],[1708738181000,0],[1708738182000,0],[1708738183000,0],[1708738184000,0],[1708738185000,0],[1708738186000,0],[1708738187000,0],[1708738188000,0],[1708738189000,0],[1708738190000,0],[1708738191000,0],[1708738192000,0],[1708738193000,0],[1708738194000,0],[1708738195000,0],[1708738196000,0],[1708738197000,0],[1708738198000,0],[1708738199000,0],[1708738200000,0],[1708738201000,0],[1708738202000,0],[1708738203000,0],[1708738204000,0],[1708738205000,0],[1708738206000,0],[1708738207000,0],[1708738208000,0],[1708738209000,25],[1708738210000,25],[1708738211000,13],[1708738212000,13],[1708738213000,13],[1708738214000,13],[1708738215000,13],[1708738216000,13],[1708738217000,13],[1708738218000,13],[1708738219000,13],[1708738220000,13],[1708738221000,13],[1708738222000,13],[1708738223000,13],[1708738224000,13],[1708738225000,13],[1708738226000,13],[1708738227000,13],[1708738228000,13],[1708738229000,13],[1708738230000,13],[1708738231000,13],[1708738232000,13],[1708738233000,13],[1708738234000,13],[1708738235000,13],[1708738236000,13],[1708738237000,13],[1708738238000,13],[1708738239000,13],[1708738240000,13],[1708738241000,13],[1708738242000,13],[1708738243000,13],[1708738244000,13],[1708738245000,13],[1708738246000,13],[1708738247000,13],[1708738248000,13],[1708738249000,13],[1708738250000,13],[1708738251000,13],[1708738252000,13],[1708738253000,13],[1708738254000,13],[1708738255000,13],[1708738256000,13],[1708738257000,13],[1708738258000,13],[1708738259000,13],[1708738260000,13],[1708738261000,13],[1708738262000,13],[1708738263000,13],[1708738264000,13],[1708738265000,13],[1708738266000,13],[1708738267000,13],[1708738268000,13],[1708738269000,13],[1708738270000,0],[1708738271000,0],[1708738272000,0],[1708738273000,0],[1708738274000,0],[1708738275000,0],[1708738276000,0],[1708738277000,0],[1708738278000,0],[1708738279000,0],[1708738280000,0],[1708738281000,0],[1708738282000,0],[1708738283000,0],[1708738284000,0],[1708738285000,0],[1708738286000,0],[1708738287000,0],[1708738288000,0],[1708738289000,0],[1708738290000,0],[1708738291000,0],[1708738292000,0],[1708738293000,0],[1708738294000,0],[1708738295000,0],[1708738296000,0],[1708738297000,0],[1708738298000,0],[1708738299000,0],[1708738300000,0],[1708738301000,0],[1708738302000,0],[1708738303000,0],[1708738304000,0],[1708738305000,0],[1708738306000,0],[1708738307000,0],[1708738308000,0],[1708738309000,0],[1708738310000,0],[1708738311000,0],[1708738312000,0],[1708738313000,0],[1708738314000,0],[1708738315000,0],[1708738316000,0],[1708738317000,0],[1708738318000,0],[1708738319000,0],[1708738320000,0],[1708738321000,0],[1708738322000,0],[1708738323000,0],[1708738324000,0],[1708738325000,0],[1708738326000,0],[1708738327000,0],[1708738328000,0],[1708738329000,0],[1708738330000,0],[1708738331000,0],[1708738332000,0],[1708738333000,0],[1708738334000,0],[1708738335000,0],[1708738336000,0],[1708738337000,0],[1708738338000,0],[1708738339000,0],[1708738340000,0],[1708738341000,0],[1708738342000,0],[1708738343000,0],[1708738344000,0],[1708738345000,0],[1708738346000,0],[1708738347000,0],[1708738348000,0],[1708738349000,0],[1708738350000,0],[1708738351000,0],[1708738352000,0],[1708738353000,0],[1708738354000,0],[1708738355000,0],[1708738356000,0],[1708738357000,0],[1708738358000,0],[1708738359000,0],[1708738360000,0],[1708738361000,0],[1708738362000,0],[1708738363000,0],[1708738364000,0],[1708738365000,0],[1708738366000,0],[1708738367000,0],[1708738368000,0],[1708738369000,0],[1708738370000,0],[1708738371000,0],[1708738372000,0],[1708738373000,0],[1708738374000,0],[1708738375000,0],[1708738376000,0],[1708738377000,0],[1708738378000,0],[1708738379000,0],[1708738380000,0],[1708738381000,0],[1708738382000,0],[1708738383000,0],[1708738384000,0],[1708738385000,0],[1708738386000,0],[1708738387000,0],[1708738388000,0],[1708738389000,0],[1708738390000,0],[1708738391000,0],[1708738392000,0],[1708738393000,0],[1708738394000,0],[1708738395000,0],[1708738396000,0],[1708738397000,0],[1708738398000,0],[1708738399000,0],[1708738400000,0],[1708738401000,0],[1708738402000,0],[1708738403000,0],[1708738404000,0],[1708738405000,0],[1708738406000,0],[1708738407000,0],[1708738408000,0],[1708738409000,0],[1708738410000,0],[1708738411000,0],[1708738412000,0],[1708738413000,0],[1708738414000,0],[1708738415000,0],[1708738416000,0],[1708738417000,0],[1708738418000,0],[1708738419000,0],[1708738420000,0],[1708738421000,0],[1708738422000,0],[1708738423000,0],[1708738424000,0],[1708738425000,0],[1708738426000,0],[1708738427000,0],[1708738428000,0],[1708738429000,0],[1708738430000,0],[1708738431000,0],[1708738432000,0],[1708738433000,0],[1708738434000,0],[1708738435000,0],[1708738436000,0],[1708738437000,0],[1708738438000,0],[1708738439000,0],[1708738440000,0],[1708738441000,0],[1708738442000,0],[1708738443000,0],[1708738444000,0],[1708738445000,0],[1708738446000,0],[1708738447000,0],[1708738448000,0],[1708738449000,0],[1708738450000,0],[1708738451000,0],[1708738452000,0],[1708738453000,0],[1708738454000,0],[1708738455000,0],[1708738456000,0],[1708738457000,0],[1708738458000,0],[1708738459000,0],[1708738460000,0],[1708738461000,0],[1708738462000,0],[1708738463000,0],[1708738464000,0],[1708738465000,0],[1708738466000,0],[1708738467000,0],[1708738468000,0],[1708738469000,0],[1708738470000,0],[1708738471000,0],[1708738472000,0],[1708738473000,0],[1708738474000,0],[1708738475000,0],[1708738476000,0],[1708738477000,0],[1708738478000,0],[1708738479000,0],[1708738480000,0],[1708738481000,0],[1708738482000,0],[1708738483000,0],[1708738484000,0],[1708738485000,0],[1708738486000,0],[1708738487000,0],[1708738488000,0],[1708738489000,0],[1708738490000,0],[1708738491000,0],[1708738492000,0],[1708738493000,0],[1708738494000,0],[1708738495000,0],[1708738496000,0],[1708738497000,0],[1708738498000,0],[1708738499000,0],[1708738500000,0],[1708738501000,0],[1708738502000,0],[1708738503000,0],[1708738504000,0],[1708738505000,0],[1708738506000,0],[1708738507000,0],[1708738508000,0],[1708738509000,0],[1708738510000,0],[1708738511000,0],[1708738512000,0],[1708738513000,0],[1708738514000,0],[1708738515000,0],[1708738516000,0],[1708738517000,0],[1708738518000,0],[1708738519000,0],[1708738520000,0],[1708738521000,0],[1708738522000,0],[1708738523000,0],[1708738524000,0],[1708738525000,0],[1708738526000,0],[1708738527000,0],[1708738528000,0],[1708738529000,0],[1708738530000,0],[1708738531000,0],[1708738532000,0],[1708738533000,0],[1708738534000,0],[1708738535000,0],[1708738536000,0],[1708738537000,0],[1708738538000,0],[1708738539000,0],[1708738540000,0],[1708738541000,0],[1708738542000,0],[1708738543000,0],[1708738544000,0],[1708738545000,0],[1708738546000,0],[1708738547000,0],[1708738548000,0],[1708738549000,0],[1708738550000,0],[1708738551000,0],[1708738552000,0],[1708738553000,0],[1708738554000,0],[1708738555000,0],[1708738556000,0],[1708738557000,0],[1708738558000,0],[1708738559000,0],[1708738560000,0],[1708738561000,0],[1708738562000,0],[1708738563000,0],[1708738564000,0],[1708738565000,0],[1708738566000,0],[1708738567000,0],[1708738568000,0],[1708738569000,0],[1708738570000,0],[1708738571000,0],[1708738572000,0],[1708738573000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#FF00E1',
name: 'validação concorrência saldo - -25',
data: [
[1708738088000,0],[1708738089000,0],[1708738090000,0],[1708738091000,0],[1708738092000,0],[1708738093000,0],[1708738094000,0],[1708738095000,0],[1708738096000,0],[1708738097000,0],[1708738098000,0],[1708738099000,0],[1708738100000,0],[1708738101000,0],[1708738102000,0],[1708738103000,0],[1708738104000,0],[1708738105000,0],[1708738106000,0],[1708738107000,0],[1708738108000,0],[1708738109000,0],[1708738110000,0],[1708738111000,0],[1708738112000,0],[1708738113000,0],[1708738114000,0],[1708738115000,0],[1708738116000,0],[1708738117000,0],[1708738118000,0],[1708738119000,0],[1708738120000,0],[1708738121000,0],[1708738122000,0],[1708738123000,0],[1708738124000,0],[1708738125000,0],[1708738126000,0],[1708738127000,0],[1708738128000,0],[1708738129000,0],[1708738130000,0],[1708738131000,0],[1708738132000,0],[1708738133000,0],[1708738134000,0],[1708738135000,0],[1708738136000,0],[1708738137000,0],[1708738138000,0],[1708738139000,0],[1708738140000,0],[1708738141000,0],[1708738142000,0],[1708738143000,0],[1708738144000,0],[1708738145000,0],[1708738146000,0],[1708738147000,0],[1708738148000,1],[1708738149000,1],[1708738150000,1],[1708738151000,1],[1708738152000,1],[1708738153000,1],[1708738154000,1],[1708738155000,1],[1708738156000,1],[1708738157000,1],[1708738158000,1],[1708738159000,1],[1708738160000,1],[1708738161000,1],[1708738162000,1],[1708738163000,1],[1708738164000,1],[1708738165000,1],[1708738166000,1],[1708738167000,1],[1708738168000,1],[1708738169000,1],[1708738170000,1],[1708738171000,1],[1708738172000,1],[1708738173000,1],[1708738174000,1],[1708738175000,1],[1708738176000,1],[1708738177000,1],[1708738178000,1],[1708738179000,1],[1708738180000,1],[1708738181000,1],[1708738182000,1],[1708738183000,1],[1708738184000,1],[1708738185000,1],[1708738186000,1],[1708738187000,1],[1708738188000,1],[1708738189000,1],[1708738190000,1],[1708738191000,1],[1708738192000,1],[1708738193000,1],[1708738194000,1],[1708738195000,1],[1708738196000,1],[1708738197000,1],[1708738198000,1],[1708738199000,1],[1708738200000,1],[1708738201000,1],[1708738202000,1],[1708738203000,1],[1708738204000,1],[1708738205000,1],[1708738206000,1],[1708738207000,1],[1708738208000,1],[1708738209000,0],[1708738210000,0],[1708738211000,0],[1708738212000,0],[1708738213000,0],[1708738214000,0],[1708738215000,0],[1708738216000,0],[1708738217000,0],[1708738218000,0],[1708738219000,0],[1708738220000,0],[1708738221000,0],[1708738222000,0],[1708738223000,0],[1708738224000,0],[1708738225000,0],[1708738226000,0],[1708738227000,0],[1708738228000,0],[1708738229000,0],[1708738230000,0],[1708738231000,0],[1708738232000,0],[1708738233000,0],[1708738234000,0],[1708738235000,0],[1708738236000,0],[1708738237000,0],[1708738238000,0],[1708738239000,0],[1708738240000,0],[1708738241000,0],[1708738242000,0],[1708738243000,0],[1708738244000,0],[1708738245000,0],[1708738246000,0],[1708738247000,0],[1708738248000,0],[1708738249000,0],[1708738250000,0],[1708738251000,0],[1708738252000,0],[1708738253000,0],[1708738254000,0],[1708738255000,0],[1708738256000,0],[1708738257000,0],[1708738258000,0],[1708738259000,0],[1708738260000,0],[1708738261000,0],[1708738262000,0],[1708738263000,0],[1708738264000,0],[1708738265000,0],[1708738266000,0],[1708738267000,0],[1708738268000,0],[1708738269000,0],[1708738270000,0],[1708738271000,0],[1708738272000,0],[1708738273000,0],[1708738274000,0],[1708738275000,0],[1708738276000,0],[1708738277000,0],[1708738278000,0],[1708738279000,0],[1708738280000,0],[1708738281000,0],[1708738282000,0],[1708738283000,0],[1708738284000,0],[1708738285000,0],[1708738286000,0],[1708738287000,0],[1708738288000,0],[1708738289000,0],[1708738290000,0],[1708738291000,0],[1708738292000,0],[1708738293000,0],[1708738294000,0],[1708738295000,0],[1708738296000,0],[1708738297000,0],[1708738298000,0],[1708738299000,0],[1708738300000,0],[1708738301000,0],[1708738302000,0],[1708738303000,0],[1708738304000,0],[1708738305000,0],[1708738306000,0],[1708738307000,0],[1708738308000,0],[1708738309000,0],[1708738310000,0],[1708738311000,0],[1708738312000,0],[1708738313000,0],[1708738314000,0],[1708738315000,0],[1708738316000,0],[1708738317000,0],[1708738318000,0],[1708738319000,0],[1708738320000,0],[1708738321000,0],[1708738322000,0],[1708738323000,0],[1708738324000,0],[1708738325000,0],[1708738326000,0],[1708738327000,0],[1708738328000,0],[1708738329000,0],[1708738330000,0],[1708738331000,0],[1708738332000,0],[1708738333000,0],[1708738334000,0],[1708738335000,0],[1708738336000,0],[1708738337000,0],[1708738338000,0],[1708738339000,0],[1708738340000,0],[1708738341000,0],[1708738342000,0],[1708738343000,0],[1708738344000,0],[1708738345000,0],[1708738346000,0],[1708738347000,0],[1708738348000,0],[1708738349000,0],[1708738350000,0],[1708738351000,0],[1708738352000,0],[1708738353000,0],[1708738354000,0],[1708738355000,0],[1708738356000,0],[1708738357000,0],[1708738358000,0],[1708738359000,0],[1708738360000,0],[1708738361000,0],[1708738362000,0],[1708738363000,0],[1708738364000,0],[1708738365000,0],[1708738366000,0],[1708738367000,0],[1708738368000,0],[1708738369000,0],[1708738370000,0],[1708738371000,0],[1708738372000,0],[1708738373000,0],[1708738374000,0],[1708738375000,0],[1708738376000,0],[1708738377000,0],[1708738378000,0],[1708738379000,0],[1708738380000,0],[1708738381000,0],[1708738382000,0],[1708738383000,0],[1708738384000,0],[1708738385000,0],[1708738386000,0],[1708738387000,0],[1708738388000,0],[1708738389000,0],[1708738390000,0],[1708738391000,0],[1708738392000,0],[1708738393000,0],[1708738394000,0],[1708738395000,0],[1708738396000,0],[1708738397000,0],[1708738398000,0],[1708738399000,0],[1708738400000,0],[1708738401000,0],[1708738402000,0],[1708738403000,0],[1708738404000,0],[1708738405000,0],[1708738406000,0],[1708738407000,0],[1708738408000,0],[1708738409000,0],[1708738410000,0],[1708738411000,0],[1708738412000,0],[1708738413000,0],[1708738414000,0],[1708738415000,0],[1708738416000,0],[1708738417000,0],[1708738418000,0],[1708738419000,0],[1708738420000,0],[1708738421000,0],[1708738422000,0],[1708738423000,0],[1708738424000,0],[1708738425000,0],[1708738426000,0],[1708738427000,0],[1708738428000,0],[1708738429000,0],[1708738430000,0],[1708738431000,0],[1708738432000,0],[1708738433000,0],[1708738434000,0],[1708738435000,0],[1708738436000,0],[1708738437000,0],[1708738438000,0],[1708738439000,0],[1708738440000,0],[1708738441000,0],[1708738442000,0],[1708738443000,0],[1708738444000,0],[1708738445000,0],[1708738446000,0],[1708738447000,0],[1708738448000,0],[1708738449000,0],[1708738450000,0],[1708738451000,0],[1708738452000,0],[1708738453000,0],[1708738454000,0],[1708738455000,0],[1708738456000,0],[1708738457000,0],[1708738458000,0],[1708738459000,0],[1708738460000,0],[1708738461000,0],[1708738462000,0],[1708738463000,0],[1708738464000,0],[1708738465000,0],[1708738466000,0],[1708738467000,0],[1708738468000,0],[1708738469000,0],[1708738470000,0],[1708738471000,0],[1708738472000,0],[1708738473000,0],[1708738474000,0],[1708738475000,0],[1708738476000,0],[1708738477000,0],[1708738478000,0],[1708738479000,0],[1708738480000,0],[1708738481000,0],[1708738482000,0],[1708738483000,0],[1708738484000,0],[1708738485000,0],[1708738486000,0],[1708738487000,0],[1708738488000,0],[1708738489000,0],[1708738490000,0],[1708738491000,0],[1708738492000,0],[1708738493000,0],[1708738494000,0],[1708738495000,0],[1708738496000,0],[1708738497000,0],[1708738498000,0],[1708738499000,0],[1708738500000,0],[1708738501000,0],[1708738502000,0],[1708738503000,0],[1708738504000,0],[1708738505000,0],[1708738506000,0],[1708738507000,0],[1708738508000,0],[1708738509000,0],[1708738510000,0],[1708738511000,0],[1708738512000,0],[1708738513000,0],[1708738514000,0],[1708738515000,0],[1708738516000,0],[1708738517000,0],[1708738518000,0],[1708738519000,0],[1708738520000,0],[1708738521000,0],[1708738522000,0],[1708738523000,0],[1708738524000,0],[1708738525000,0],[1708738526000,0],[1708738527000,0],[1708738528000,0],[1708738529000,0],[1708738530000,0],[1708738531000,0],[1708738532000,0],[1708738533000,0],[1708738534000,0],[1708738535000,0],[1708738536000,0],[1708738537000,0],[1708738538000,0],[1708738539000,0],[1708738540000,0],[1708738541000,0],[1708738542000,0],[1708738543000,0],[1708738544000,0],[1708738545000,0],[1708738546000,0],[1708738547000,0],[1708738548000,0],[1708738549000,0],[1708738550000,0],[1708738551000,0],[1708738552000,0],[1708738553000,0],[1708738554000,0],[1708738555000,0],[1708738556000,0],[1708738557000,0],[1708738558000,0],[1708738559000,0],[1708738560000,0],[1708738561000,0],[1708738562000,0],[1708738563000,0],[1708738564000,0],[1708738565000,0],[1708738566000,0],[1708738567000,0],[1708738568000,0],[1708738569000,0],[1708738570000,0],[1708738571000,0],[1708738572000,0],[1708738573000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
{
color: '#AECAEB',
name: 'validação concorrência transações - d',
data: [
[1708738088000,25],[1708738089000,3],[1708738090000,3],[1708738091000,3],[1708738092000,3],[1708738093000,3],[1708738094000,3],[1708738095000,3],[1708738096000,3],[1708738097000,3],[1708738098000,3],[1708738099000,3],[1708738100000,3],[1708738101000,3],[1708738102000,3],[1708738103000,3],[1708738104000,3],[1708738105000,3],[1708738106000,3],[1708738107000,3],[1708738108000,3],[1708738109000,3],[1708738110000,3],[1708738111000,3],[1708738112000,3],[1708738113000,3],[1708738114000,3],[1708738115000,3],[1708738116000,3],[1708738117000,3],[1708738118000,3],[1708738119000,3],[1708738120000,3],[1708738121000,3],[1708738122000,3],[1708738123000,3],[1708738124000,3],[1708738125000,3],[1708738126000,3],[1708738127000,3],[1708738128000,3],[1708738129000,3],[1708738130000,3],[1708738131000,3],[1708738132000,3],[1708738133000,3],[1708738134000,3],[1708738135000,3],[1708738136000,3],[1708738137000,3],[1708738138000,3],[1708738139000,3],[1708738140000,3],[1708738141000,3],[1708738142000,3],[1708738143000,3],[1708738144000,3],[1708738145000,3],[1708738146000,3],[1708738147000,3],[1708738148000,3],[1708738149000,0],[1708738150000,0],[1708738151000,0],[1708738152000,0],[1708738153000,0],[1708738154000,0],[1708738155000,0],[1708738156000,0],[1708738157000,0],[1708738158000,0],[1708738159000,0],[1708738160000,0],[1708738161000,0],[1708738162000,0],[1708738163000,0],[1708738164000,0],[1708738165000,0],[1708738166000,0],[1708738167000,0],[1708738168000,0],[1708738169000,0],[1708738170000,0],[1708738171000,0],[1708738172000,0],[1708738173000,0],[1708738174000,0],[1708738175000,0],[1708738176000,0],[1708738177000,0],[1708738178000,0],[1708738179000,0],[1708738180000,0],[1708738181000,0],[1708738182000,0],[1708738183000,0],[1708738184000,0],[1708738185000,0],[1708738186000,0],[1708738187000,0],[1708738188000,0],[1708738189000,0],[1708738190000,0],[1708738191000,0],[1708738192000,0],[1708738193000,0],[1708738194000,0],[1708738195000,0],[1708738196000,0],[1708738197000,0],[1708738198000,0],[1708738199000,0],[1708738200000,0],[1708738201000,0],[1708738202000,0],[1708738203000,0],[1708738204000,0],[1708738205000,0],[1708738206000,0],[1708738207000,0],[1708738208000,0],[1708738209000,0],[1708738210000,0],[1708738211000,0],[1708738212000,0],[1708738213000,0],[1708738214000,0],[1708738215000,0],[1708738216000,0],[1708738217000,0],[1708738218000,0],[1708738219000,0],[1708738220000,0],[1708738221000,0],[1708738222000,0],[1708738223000,0],[1708738224000,0],[1708738225000,0],[1708738226000,0],[1708738227000,0],[1708738228000,0],[1708738229000,0],[1708738230000,0],[1708738231000,0],[1708738232000,0],[1708738233000,0],[1708738234000,0],[1708738235000,0],[1708738236000,0],[1708738237000,0],[1708738238000,0],[1708738239000,0],[1708738240000,0],[1708738241000,0],[1708738242000,0],[1708738243000,0],[1708738244000,0],[1708738245000,0],[1708738246000,0],[1708738247000,0],[1708738248000,0],[1708738249000,0],[1708738250000,0],[1708738251000,0],[1708738252000,0],[1708738253000,0],[1708738254000,0],[1708738255000,0],[1708738256000,0],[1708738257000,0],[1708738258000,0],[1708738259000,0],[1708738260000,0],[1708738261000,0],[1708738262000,0],[1708738263000,0],[1708738264000,0],[1708738265000,0],[1708738266000,0],[1708738267000,0],[1708738268000,0],[1708738269000,0],[1708738270000,0],[1708738271000,0],[1708738272000,0],[1708738273000,0],[1708738274000,0],[1708738275000,0],[1708738276000,0],[1708738277000,0],[1708738278000,0],[1708738279000,0],[1708738280000,0],[1708738281000,0],[1708738282000,0],[1708738283000,0],[1708738284000,0],[1708738285000,0],[1708738286000,0],[1708738287000,0],[1708738288000,0],[1708738289000,0],[1708738290000,0],[1708738291000,0],[1708738292000,0],[1708738293000,0],[1708738294000,0],[1708738295000,0],[1708738296000,0],[1708738297000,0],[1708738298000,0],[1708738299000,0],[1708738300000,0],[1708738301000,0],[1708738302000,0],[1708738303000,0],[1708738304000,0],[1708738305000,0],[1708738306000,0],[1708738307000,0],[1708738308000,0],[1708738309000,0],[1708738310000,0],[1708738311000,0],[1708738312000,0],[1708738313000,0],[1708738314000,0],[1708738315000,0],[1708738316000,0],[1708738317000,0],[1708738318000,0],[1708738319000,0],[1708738320000,0],[1708738321000,0],[1708738322000,0],[1708738323000,0],[1708738324000,0],[1708738325000,0],[1708738326000,0],[1708738327000,0],[1708738328000,0],[1708738329000,0],[1708738330000,0],[1708738331000,0],[1708738332000,0],[1708738333000,0],[1708738334000,0],[1708738335000,0],[1708738336000,0],[1708738337000,0],[1708738338000,0],[1708738339000,0],[1708738340000,0],[1708738341000,0],[1708738342000,0],[1708738343000,0],[1708738344000,0],[1708738345000,0],[1708738346000,0],[1708738347000,0],[1708738348000,0],[1708738349000,0],[1708738350000,0],[1708738351000,0],[1708738352000,0],[1708738353000,0],[1708738354000,0],[1708738355000,0],[1708738356000,0],[1708738357000,0],[1708738358000,0],[1708738359000,0],[1708738360000,0],[1708738361000,0],[1708738362000,0],[1708738363000,0],[1708738364000,0],[1708738365000,0],[1708738366000,0],[1708738367000,0],[1708738368000,0],[1708738369000,0],[1708738370000,0],[1708738371000,0],[1708738372000,0],[1708738373000,0],[1708738374000,0],[1708738375000,0],[1708738376000,0],[1708738377000,0],[1708738378000,0],[1708738379000,0],[1708738380000,0],[1708738381000,0],[1708738382000,0],[1708738383000,0],[1708738384000,0],[1708738385000,0],[1708738386000,0],[1708738387000,0],[1708738388000,0],[1708738389000,0],[1708738390000,0],[1708738391000,0],[1708738392000,0],[1708738393000,0],[1708738394000,0],[1708738395000,0],[1708738396000,0],[1708738397000,0],[1708738398000,0],[1708738399000,0],[1708738400000,0],[1708738401000,0],[1708738402000,0],[1708738403000,0],[1708738404000,0],[1708738405000,0],[1708738406000,0],[1708738407000,0],[1708738408000,0],[1708738409000,0],[1708738410000,0],[1708738411000,0],[1708738412000,0],[1708738413000,0],[1708738414000,0],[1708738415000,0],[1708738416000,0],[1708738417000,0],[1708738418000,0],[1708738419000,0],[1708738420000,0],[1708738421000,0],[1708738422000,0],[1708738423000,0],[1708738424000,0],[1708738425000,0],[1708738426000,0],[1708738427000,0],[1708738428000,0],[1708738429000,0],[1708738430000,0],[1708738431000,0],[1708738432000,0],[1708738433000,0],[1708738434000,0],[1708738435000,0],[1708738436000,0],[1708738437000,0],[1708738438000,0],[1708738439000,0],[1708738440000,0],[1708738441000,0],[1708738442000,0],[1708738443000,0],[1708738444000,0],[1708738445000,0],[1708738446000,0],[1708738447000,0],[1708738448000,0],[1708738449000,0],[1708738450000,0],[1708738451000,0],[1708738452000,0],[1708738453000,0],[1708738454000,0],[1708738455000,0],[1708738456000,0],[1708738457000,0],[1708738458000,0],[1708738459000,0],[1708738460000,0],[1708738461000,0],[1708738462000,0],[1708738463000,0],[1708738464000,0],[1708738465000,0],[1708738466000,0],[1708738467000,0],[1708738468000,0],[1708738469000,0],[1708738470000,0],[1708738471000,0],[1708738472000,0],[1708738473000,0],[1708738474000,0],[1708738475000,0],[1708738476000,0],[1708738477000,0],[1708738478000,0],[1708738479000,0],[1708738480000,0],[1708738481000,0],[1708738482000,0],[1708738483000,0],[1708738484000,0],[1708738485000,0],[1708738486000,0],[1708738487000,0],[1708738488000,0],[1708738489000,0],[1708738490000,0],[1708738491000,0],[1708738492000,0],[1708738493000,0],[1708738494000,0],[1708738495000,0],[1708738496000,0],[1708738497000,0],[1708738498000,0],[1708738499000,0],[1708738500000,0],[1708738501000,0],[1708738502000,0],[1708738503000,0],[1708738504000,0],[1708738505000,0],[1708738506000,0],[1708738507000,0],[1708738508000,0],[1708738509000,0],[1708738510000,0],[1708738511000,0],[1708738512000,0],[1708738513000,0],[1708738514000,0],[1708738515000,0],[1708738516000,0],[1708738517000,0],[1708738518000,0],[1708738519000,0],[1708738520000,0],[1708738521000,0],[1708738522000,0],[1708738523000,0],[1708738524000,0],[1708738525000,0],[1708738526000,0],[1708738527000,0],[1708738528000,0],[1708738529000,0],[1708738530000,0],[1708738531000,0],[1708738532000,0],[1708738533000,0],[1708738534000,0],[1708738535000,0],[1708738536000,0],[1708738537000,0],[1708738538000,0],[1708738539000,0],[1708738540000,0],[1708738541000,0],[1708738542000,0],[1708738543000,0],[1708738544000,0],[1708738545000,0],[1708738546000,0],[1708738547000,0],[1708738548000,0],[1708738549000,0],[1708738550000,0],[1708738551000,0],[1708738552000,0],[1708738553000,0],[1708738554000,0],[1708738555000,0],[1708738556000,0],[1708738557000,0],[1708738558000,0],[1708738559000,0],[1708738560000,0],[1708738561000,0],[1708738562000,0],[1708738563000,0],[1708738564000,0],[1708738565000,0],[1708738566000,0],[1708738567000,0],[1708738568000,0],[1708738569000,0],[1708738570000,0],[1708738571000,0],[1708738572000,0],[1708738573000,0]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responsetimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'responsetimeDistributionContainer',
type: 'column',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: 5,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
xAxis: {
categories: ['300', '900', '1500', '2100', '2700', '3300', '3900', '4500', '5100', '5700', '6300', '6900', '7500', '8100', '8700', '9300', '9900', '10500', '11100', '11700', '12300', '12900', '13500', '14100', '14700', '15300', '15900', '16500', '17100', '17700', '18300', '18900', '19500', '20100', '20700', '21300', '21900', '22500', '23100', '23700', '24300', '24900', '25500', '26100', '26700', '27300', '27900', '28500', '29100', '29700', '30301', '30901', '31501', '32101', '32701', '33301', '33901', '34501', '35101', '35701', '36301', '36901', '37501', '38101', '38701', '39301', '39901', '40501', '41101', '41701', '42301', '42901', '43501', '44101', '44701', '45301', '45901', '46501', '47101', '47701', '48301', '48901', '49501', '50101', '50701', '51301', '51901', '52501', '53101', '53701', '54301', '54901', '55501', '56101', '56701', '57301', '57901', '58501', '59101', '59701'],
tickInterval: 20
},
yAxis: {
min: 0,
title: { text: 'Percentage of Requests' },
reversedStacks: false
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +' ms</b><br/>'+
this.series.name +': '+ this.y +' %<br/>'+
'Total: '+ this.point.stackTotal + ' %';
}
},
plotOptions: {
series: {
groupPadding: 0,
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#68b65c',
name: 'OK',
data: [
26.64,3.97,4.09,3.41,3.05,1.71,0.99,0.57,0.39,0.24,0.08,0.06,0.06,0.05,0.04,0.02,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#f15b4f',
name: 'KO',
data: [
37.09,3.27,3.2,2.86,2.17,1.44,0.81,0.47,0.27,0.2,0.13,0.12,0.12,0.11,0.06,0.07,0.06,0.03,0.03,0.02,0.03,0.03,0.02,0.02,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.02,0.01,0.01,0.01,0.02,0.02,0.01,0.01,0.02,0.02,0.0,0.01,0.02,0.0,0.02,0.02,0.01,0.02,0.01,0.02,0.01,0.01,0.01,0.01,0.01,0.01,0.0,0.02,0.0,0.01,0.0,0.0,0.02,0.0,0.0,0.02,0.0,0.0,0.01,0.01,0.0,0.0,0.0,0.01,0.01,0.0,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.01,0.02,0.02,0.02,0.02,0.02,0.01,0.28
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708738088,[18,42,51,56,56,57,58,60,64,65]],[1708738089,null],[1708738090,null],[1708738091,null],[1708738092,null],[1708738093,null],[1708738094,null],[1708738095,null],[1708738096,null],[1708738097,null],[1708738098,null],[1708738099,null],[1708738100,null],[1708738101,null],[1708738102,null],[1708738103,null],[1708738104,null],[1708738105,null],[1708738106,null],[1708738107,null],[1708738108,null],[1708738109,null],[1708738110,null],[1708738111,null],[1708738112,null],[1708738113,null],[1708738114,null],[1708738115,null],[1708738116,null],[1708738117,null],[1708738118,null],[1708738119,null],[1708738120,null],[1708738121,null],[1708738122,null],[1708738123,null],[1708738124,null],[1708738125,null],[1708738126,null],[1708738127,null],[1708738128,null],[1708738129,null],[1708738130,null],[1708738131,null],[1708738132,null],[1708738133,null],[1708738134,null],[1708738135,null],[1708738136,null],[1708738137,null],[1708738138,null],[1708738139,null],[1708738140,null],[1708738141,null],[1708738142,null],[1708738143,null],[1708738144,null],[1708738145,null],[1708738146,null],[1708738147,null],[1708738148,null],[1708738149,null],[1708738150,null],[1708738151,null],[1708738152,null],[1708738153,null],[1708738154,null],[1708738155,null],[1708738156,null],[1708738157,null],[1708738158,null],[1708738159,null],[1708738160,null],[1708738161,null],[1708738162,null],[1708738163,null],[1708738164,null],[1708738165,null],[1708738166,null],[1708738167,null],[1708738168,null],[1708738169,null],[1708738170,null],[1708738171,null],[1708738172,null],[1708738173,null],[1708738174,null],[1708738175,null],[1708738176,null],[1708738177,null],[1708738178,null],[1708738179,null],[1708738180,null],[1708738181,null],[1708738182,null],[1708738183,null],[1708738184,null],[1708738185,null],[1708738186,null],[1708738187,null],[1708738188,null],[1708738189,null],[1708738190,null],[1708738191,null],[1708738192,null],[1708738193,null],[1708738194,null],[1708738195,null],[1708738196,null],[1708738197,null],[1708738198,null],[1708738199,null],[1708738200,null],[1708738201,null],[1708738202,null],[1708738203,null],[1708738204,null],[1708738205,null],[1708738206,null],[1708738207,null],[1708738208,null],[1708738209,null],[1708738210,[12,24,30,34,34,34,34,35,35,35]],[1708738211,null],[1708738212,null],[1708738213,null],[1708738214,null],[1708738215,null],[1708738216,null],[1708738217,null],[1708738218,null],[1708738219,null],[1708738220,null],[1708738221,null],[1708738222,null],[1708738223,null],[1708738224,null],[1708738225,null],[1708738226,null],[1708738227,null],[1708738228,null],[1708738229,null],[1708738230,null],[1708738231,null],[1708738232,null],[1708738233,null],[1708738234,null],[1708738235,null],[1708738236,null],[1708738237,null],[1708738238,null],[1708738239,null],[1708738240,null],[1708738241,null],[1708738242,null],[1708738243,null],[1708738244,null],[1708738245,null],[1708738246,null],[1708738247,null],[1708738248,null],[1708738249,null],[1708738250,null],[1708738251,null],[1708738252,null],[1708738253,null],[1708738254,null],[1708738255,null],[1708738256,null],[1708738257,null],[1708738258,null],[1708738259,null],[1708738260,null],[1708738261,null],[1708738262,null],[1708738263,null],[1708738264,null],[1708738265,null],[1708738266,null],[1708738267,null],[1708738268,null],[1708738269,null],[1708738270,null],[1708738271,null],[1708738272,[5,5,7,8,8,8,8,8,8,9]],[1708738273,null],[1708738274,null],[1708738275,null],[1708738276,null],[1708738277,null],[1708738278,null],[1708738279,null],[1708738280,null],[1708738281,null],[1708738282,null],[1708738283,null],[1708738284,null],[1708738285,null],[1708738286,null],[1708738287,null],[1708738288,null],[1708738289,null],[1708738290,null],[1708738291,null],[1708738292,null],[1708738293,null],[1708738294,null],[1708738295,null],[1708738296,null],[1708738297,null],[1708738298,null],[1708738299,null],[1708738300,null],[1708738301,null],[1708738302,null],[1708738303,null],[1708738304,null],[1708738305,null],[1708738306,null],[1708738307,null],[1708738308,null],[1708738309,null],[1708738310,null],[1708738311,null],[1708738312,null],[1708738313,null],[1708738314,null],[1708738315,null],[1708738316,null],[1708738317,null],[1708738318,null],[1708738319,null],[1708738320,null],[1708738321,null],[1708738322,null],[1708738323,null],[1708738324,null],[1708738325,null],[1708738326,null],[1708738327,null],[1708738328,null],[1708738329,null],[1708738330,null],[1708738331,null],[1708738332,[6,8,9,10,10,10,10,14,18,19]],[1708738333,[6,13085,26164,39243,41858,44474,47090,49706,51798,52322]],[1708738334,[5,5,6,7,7,7,7,7,7,8]],[1708738335,[4,5,7,8,8,9,10,11,11,12]],[1708738336,[5,5,6,6,6,7,9,24782,44600,49555]],[1708738337,[4,5,6,6,8,9,9,10,10,10]],[1708738338,[4,5,5,6,10,14,23,35,45,48]],[1708738339,[4,5,5,6,6,6,6,7,9,10]],[1708738340,[3,4,5,5,6,6,27,37,34515,44814]],[1708738341,[4,5,5,6,6,6,7,11085,37668,44314]],[1708738342,[3,4,5,5,5,6,6,7,11,12]],[1708738343,[4,4,5,6,6,6,6,6,33087,42418]],[1708738344,[4,5,5,6,6,7,7,9,10,11]],[1708738345,[4,5,5,5,5,6,6,7,20,24]],[1708738346,[4,4,5,6,6,7,8,9,25232,38814]],[1708738347,[4,5,5,6,6,7,8,9,9,9]],[1708738348,[4,5,5,7,8,10,16,39,60,68]],[1708738349,[3,4,4,5,5,5,6,7,10,12]],[1708738350,[3,4,4,5,5,5,6,7,10,11]],[1708738351,[3,4,4,5,5,5,5,1730,34600,34650]],[1708738352,[2,3,4,4,5,5,6,10,19868,33100]],[1708738353,[2,4,4,5,5,6,6,7,17777,32315]],[1708738354,[3,4,4,5,5,5,7,7,17102,31089]],[1708738355,[3,4,4,6,6,6,6,7,7,8]],[1708738356,[3,3,4,5,5,6,7,8,14276,29126]],[1708738357,[2,4,4,5,5,6,6,6,12988,28227]],[1708738358,[2,3,4,4,4,5,6,6,11439,27227]],[1708738359,[3,4,5,7,20,40,53,76,10864,26369]],[1708738360,[3,3,4,4,5,5,6,7,11207,24894]],[1708738361,[3,4,4,4,4,5,5,6,7,8]],[1708738362,[2,3,4,4,4,4,4,5,5,8]],[1708738363,[2,3,3,4,4,5,5,6,7828,21727]],[1708738364,[2,3,4,4,4,5,5,6,7144,20997]],[1708738365,[2,3,4,4,4,6,6,7,8,9]],[1708738366,[2,4,4,5,5,5,6,6,8,9]],[1708738367,[3,4,4,5,5,6,6,6,8,8]],[1708738368,[2,4,4,5,6,6,6,7,17163,17695]],[1708738369,[2,4,6,76,90,110,144,186,16378,16477]],[1708738370,[2,3,4,4,4,5,6,6,7,8]],[1708738371,[2,3,4,4,4,5,6,7,14182,14570]],[1708738372,[2,3,4,4,5,5,6,6,2602,12976]],[1708738373,[2,3,3,4,4,5,5,6,1239,12332]],[1708738374,[2,3,3,3,4,4,4,5,10758,11315]],[1708738375,[2,3,4,4,4,4,5,6,7,15]],[1708738376,[2,3,4,4,4,5,5,6,724,8976]],[1708738377,[2,3,4,4,5,5,6,6,8006,8476]],[1708738378,[2,4,4,4,4,5,6,7,20,22]],[1708738379,[2,3,4,6,8,25,54,116,226,5975]],[1708738380,[2,4,4,17,54,76,96,121,238,5139]],[1708738381,[2,3,4,4,5,5,6,6,15,3825]],[1708738382,[2,3,4,4,5,5,6,6,8,3227]],[1708738383,[2,3,4,4,4,5,6,6,7,9]],[1708738384,[2,3,4,4,4,4,5,5,6,6]],[1708738385,[2,4,99,153,162,171,181,205,328,403]],[1708738386,[2,4,5,40,46,64,73,88,116,142]],[1708738387,[2,3,4,4,4,5,5,6,9,9]],[1708738388,[2,3,3,4,4,4,4,5,8,9]],[1708738389,[2,3,4,4,5,5,6,6,7,8]],[1708738390,[2,6,76,187,215,249,298,336,417,500]],[1708738391,[2,3,4,5,5,6,6,6,7,14]],[1708738392,[2,3,4,4,5,5,6,6,7,8]],[1708738393,[2,3,4,4,4,5,5,6,7,9]],[1708738394,[2,4,4,4,5,5,6,6,8,10]],[1708738395,[2,3,4,4,5,5,5,6,9,16]],[1708738396,[2,3,3,4,4,4,5,5,6,7]],[1708738397,[2,3,3,4,4,4,5,6,6,8]],[1708738398,[2,3,3,4,4,5,5,6,6,8]],[1708738399,[2,3,3,4,4,5,5,6,8,11]],[1708738400,[2,3,4,106,134,157,218,257,319,388]],[1708738401,[2,3,5,51,80,114,140,181,269,298]],[1708738402,[2,3,4,4,4,5,5,6,6,59361]],[1708738403,[2,3,3,4,4,5,5,6,7,9]],[1708738404,[2,3,3,4,4,5,5,6,8,57357]],[1708738405,[2,3,3,4,4,5,5,6,55799,56683]],[1708738406,[2,3,3,4,4,4,4,5,6,55987]],[1708738407,[2,3,3,4,4,5,5,6,7,54426]],[1708738408,[2,3,3,4,4,5,6,6,10,53803]],[1708738409,[2,3,3,4,4,5,5,6,52342,53431]],[1708738410,[2,3,3,4,4,5,5,6,7,9]],[1708738411,[3,86,168,272,308,340,400,467,579,50342]],[1708738412,[2,3,4,6,7,15,25,44,72,49311]],[1708738413,[2,3,4,4,4,4,5,6,8,48970]],[1708738414,[2,3,4,4,5,5,6,6,7,9]],[1708738415,[2,3,4,4,6,6,6,6,7,10]],[1708738416,[2,3,4,4,5,5,6,6,7,10]],[1708738417,[2,3,4,4,5,5,5,6,7,10]],[1708738418,[2,3,4,5,5,5,6,12,26,43563]],[1708738419,[2,3,4,4,4,5,5,6,9,15]],[1708738420,[2,3,3,4,4,4,5,6,9,17]],[1708738421,[2,3,6,390,428,454,551,632,848,1014]],[1708738422,[70,222,289,371,390,423,486,604,872,39346]],[1708738423,[61,162,211,267,282,299,337,370,472,503]],[1708738424,[34,106,134,170,181,195,212,264,314,381]],[1708738425,[22,64,84,110,121,131,145,161,192,211]],[1708738426,[17,49,71,87,91,100,110,127,147,190]],[1708738427,[17,51,73,99,109,119,144,166,218,313]],[1708738428,[23,97,121,155,163,170,182,219,248,437]],[1708738429,[18,90,111,151,163,169,184,215,10729,32627]],[1708738430,[23,103,136,179,187,203,234,262,343,409]],[1708738431,[82,139,186,254,293,335,411,639,990,1079]],[1708738432,[66,406,558,664,697,746,804,866,970,1129]],[1708738433,[4,145,198,248,265,283,302,332,360,414]],[1708738434,[5,5,5,5,5,5,5,5,5,6]],[1708738435,[5,5,5,5,5,5,5,5,5,5]],[1708738436,null],[1708738437,null],[1708738438,[4,4,4,4,4,4,4,4,4,4]],[1708738439,[5,5,5,5,5,5,5,5,5,5]],[1708738440,null],[1708738441,[3,4,5,5,5,5,6,6,6,7]],[1708738442,[3,6,20,34,34,38,43,48,52,53]],[1708738443,[4,5,5,6,6,6,6,6,6,6]],[1708738444,[4,4,4,5,5,5,5,5,5,6]],[1708738445,[4,5,8,9,9,9,9,9,9,10]],[1708738446,[7,7,8,9,9,9,9,9,9,10]],[1708738447,[5,5,5,5,5,5,5,5,5,6]],[1708738448,[4,4,5,5,5,6,6,6,6,6]],[1708738449,[4,4,5,5,5,6,6,6,7,8]],[1708738450,[5,5,5,5,5,5,5,5,5,5]],[1708738451,null],[1708738452,[5,5,5,5,5,5,5,5,5,5]],[1708738453,[4,4,5,6,6,8,10,12,14,15]],[1708738454,[3,3,5,6,6,6,6,6,6,6]],[1708738455,[2,5,50,108,136,146,170,185,267,435]],[1708738456,[110,230,321,426,447,473,514,552,671,779]],[1708738457,[32,129,179,238,264,292,321,361,473,4017]],[1708738458,[4,30,52,67,71,76,85,103,134,2819]],[1708738459,[5,38,59,74,81,86,90,118,150,2146]],[1708738460,[7,39,57,71,77,83,93,110,262,351]],[1708738461,[49,401,666,1008,1084,1346,1729,1979,2439,2852]],[1708738462,[428,1214,1492,1887,1922,2039,2139,2247,2493,2674]],[1708738463,[646,1356,1401,1453,1461,1478,1490,1505,1512,1516]],[1708738464,[743,743,743,743,743,743,743,743,743,743]],[1708738465,null],[1708738466,null],[1708738467,null],[1708738468,null],[1708738469,null],[1708738470,null],[1708738471,[3,37,126,225,268,329,373,452,772,832]],[1708738472,[165,504,730,1295,1562,1645,2049,2538,3880,5762]],[1708738473,[128,1369,1889,2680,2809,3427,3477,4258,5058,5987]],[1708738474,[687,1900,2359,3136,3188,3841,3976,4821,5985,6567]],[1708738475,[20,1680,2473,3297,4044,4098,4144,4983,5963,7751]],[1708738476,[797,1844,2457,3299,3317,3358,4267,5131,6006,6056]],[1708738477,[798,2463,2530,3503,3531,4333,4365,5155,7340,7925]],[1708738478,[853,2530,2706,3554,3574,4345,4411,4465,5719,6583]],[1708738479,[843,1889,2726,3594,3634,4491,4793,4868,5716,6419]],[1708738480,[930,1866,2714,3683,3722,3890,3949,3967,4833,4873]],[1708738481,[850,1765,2674,2982,2990,2997,3012,3870,3887,3888]],[1708738482,[935,2112,2146,2170,2177,2184,2198,2257,3023,3026]],[1708738483,[1096,1173,1250,1254,1254,1255,1256,1257,1257,1258]],[1708738484,null],[1708738485,null],[1708738486,null],[1708738487,null],[1708738488,null],[1708738489,null],[1708738490,null],[1708738491,null],[1708738492,null],[1708738493,null],[1708738494,null],[1708738495,[3,52,126,218,246,265,294,418,547,1046]],[1708738496,[17,433,646,1002,1128,1322,1680,8471,9514,11206]],[1708738497,[283,1013,1344,1968,2392,3225,7977,8717,9937,10095]],[1708738498,[416,1319,1743,2713,3355,3978,7017,7692,9178,9917]],[1708738499,[582,1796,2356,3569,4052,4632,5867,6815,7828,10023]],[1708738500,[700,1806,2743,3596,3993,4747,5125,5764,7804,8500]],[1708738501,[888,1872,2020,3492,4089,4425,4820,5619,6652,8025]],[1708738502,[71,2090,2952,3871,4316,4710,4823,5344,6034,6312]],[1708738503,[1184,2434,2788,3290,3438,3664,4390,4556,5074,5432]],[1708738504,[570,1384,1528,2235,2239,2270,2937,2984,3876,3958]],[1708738505,[587,1293,1909,2260,2658,2956,3086,3189,3792,3878]],[1708738506,[122,1539,1833,2586,2626,2659,2694,3231,3360,3364]],[1708738507,[1010,1907,1999,2029,2036,2050,2059,2072,2073,2074]],[1708738508,null],[1708738509,null],[1708738510,null],[1708738511,null],[1708738512,null],[1708738513,null],[1708738514,null],[1708738515,[5,49,133,225,238,259,368,440,693,754]],[1708738516,[158,503,786,1140,1339,1489,1657,2018,2748,2867]],[1708738517,[353,1155,1695,2374,2560,2700,2871,3169,4283,5062]],[1708738518,[693,1646,2314,2557,2594,2626,3058,3177,3523,3938]],[1708738519,[948,1766,1790,1828,1831,1850,1861,1870,2115,2421]],[1708738520,[17,986,1064,1231,1244,1272,1363,1899,2155,2168]],[1708738521,[179,324,455,633,658,689,794,860,1426,1876]],[1708738522,[254,715,969,1431,1508,1667,1795,2117,3408,3815]],[1708738523,[666,1387,1932,2598,2697,2872,2967,3122,3333,3352]],[1708738524,[822,1835,1865,1924,1931,1939,1953,2074,2438,2715]],[1708738525,[1127,1134,1141,1148,1149,1150,1152,1153,1154,1155]],[1708738526,null],[1708738527,null],[1708738528,null],[1708738529,null],[1708738530,null],[1708738531,null],[1708738532,[3,39,101,207,238,255,324,367,430,529]],[1708738533,[187,434,678,1051,1200,1337,1562,2021,3707,6640]],[1708738534,[662,1141,1733,2625,2842,3128,3521,3965,5173,6124]],[1708738535,[546,2017,2610,3582,3941,4175,4597,5081,5925,7062]],[1708738536,[860,1845,2755,3683,3740,3785,4629,4897,5792,5810]],[1708738537,[8,1927,2860,3984,4049,4855,5091,5847,7689,8155]],[1708738538,[960,2103,3133,4440,4789,5186,5494,6115,7231,7365]],[1708738539,[1001,2157,3175,4337,4533,4850,5032,5322,5930,6252]],[1708738540,[1154,2765,3622,4620,4728,5164,5424,5623,5739,5752]],[1708738541,[1107,1931,2508,2971,3406,3567,3836,3945,5059,5063]],[1708738542,[643,1296,2253,2458,3099,3215,3241,3271,3365,3400]],[1708738543,[31,1492,1968,2089,2120,2505,2644,2707,2726,2727]],[1708738544,[89,1092,1162,1184,1186,1188,1189,1189,1189,1189]],[1708738545,null],[1708738546,null],[1708738547,null],[1708738548,null],[1708738549,null],[1708738550,null],[1708738551,null],[1708738552,null],[1708738553,[3,49,122,209,279,314,383,446,593,666]],[1708738554,[198,454,685,1121,1286,1463,1681,2243,3539,5554]],[1708738555,[418,1210,1835,2635,2753,3130,3444,4028,5022,5571]],[1708738556,[18,1587,2368,3271,3866,4130,4277,5584,6010,8510]],[1708738557,[771,2286,2644,3646,4139,4599,4940,5214,5717,6147]],[1708738558,[875,1817,2742,3657,3800,3870,4261,4595,5540,5966]],[1708738559,[887,1961,2055,2949,3103,3296,3399,3681,4203,4243]],[1708738560,[1014,1917,2192,2601,2610,2680,2713,2810,3973,4859]],[1708738561,[362,956,1237,1730,1753,1822,1965,2094,2196,2249]],[1708738562,[220,538,770,1109,1149,1221,1358,1485,1739,2256]],[1708738563,[302,673,974,1277,1286,1561,1589,1869,2284,2991]],[1708738564,[45,742,1101,1536,1651,1765,2146,2596,3552,4485]],[1708738565,[445,1267,1840,2326,2444,2690,2874,3119,3484,3488]],[1708738566,[586,1602,1931,2422,2431,2472,2500,2556,2593,2603]],[1708738567,[887,889,943,961,973,985,997,1009,1018,1021]],[1708738568,null],[1708738569,null],[1708738570,null],[1708738571,null],[1708738572,[6,58,155,269,298,327,416,517,654,725]],[1708738573,[136,317,377,485,504,523,541,600,693,706]]]);
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],