-
Notifications
You must be signed in to change notification settings - Fork 925
/
req_de-bitos-1025427916.html
950 lines (912 loc) · 68 KB
/
req_de-bitos-1025427916.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
<!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 - débitos</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 "><a href="index.html">Global</a></div>
<div class="item ouvert"><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-large">
</div>
<div class="infos">
<div class="infos-in">
<div class="infos-title">Stats</div>
<div class="info">
<h2 class="first">Executions</h2>
<table>
<thead>
<tr><th></th><th>Total</th><th>OK</th><th>KO</th></tr>
</thead>
<tbody>
<tr>
<td class="title">Total count</td>
<td id="numberOfRequests" class="total"></td>
<td id="numberOfRequestsOK" class="ok"></td>
<td id="numberOfRequestsKO" class="ko"></td>
</tr>
<tr>
<td class="title">Mean count/s</abbr></td>
<td id="meanNumberOfRequestsPerSecond" class="total"></td>
<td id="meanNumberOfRequestsPerSecondOK" class="ok"></td>
<td id="meanNumberOfRequestsPerSecondKO" class="ko"></td>
</tr>
</tbody>
</table>
<h2 class="second">Response Time (ms)</h2>
<table>
<thead>
<tr>
<th></th>
<th>Total</th>
<th>OK</th>
<th>KO</th>
</tr>
</thead>
<tbody>
<tr>
<td class="title">Min</td>
<td id="minResponseTime" class="total"></td>
<td id="minResponseTimeOK" class="ok"></td>
<td id="minResponseTimeKO" class="ko"></td>
</tr>
<tr>
<td class="title">50th percentile</td>
<td id="percentiles1" class="total"></td>
<td id="percentiles1OK" class="ok"></td>
<td id="percentiles1KO" class="ko"></td>
</tr>
<tr>
<td class="title">75th percentile</td>
<td id="percentiles2" class="total"></td>
<td id="percentiles2OK" class="ok"></td>
<td id="percentiles2KO" class="ko"></td>
</tr>
<tr>
<td class="title">95th percentile</td>
<td id="percentiles3" class="total"></td>
<td id="percentiles3OK" class="ok"></td>
<td id="percentiles3KO" class="ko"></td>
</tr>
<tr>
<td class="title">99th percentile</td>
<td id="percentiles4" class="total"></td>
<td id="percentiles4OK" class="ok"></td>
<td id="percentiles4KO" class="ko"></td>
</tr>
<tr>
<td class="title">Max</td>
<td id="maxResponseTime" class="total"></td>
<td id="maxResponseTimeOK" class="ok"></td>
<td id="maxResponseTimeKO" class="ko"></td>
</tr>
<tr>
<td class="title">Mean</td>
<td id="meanResponseTime" class="total"></td>
<td id="meanResponseTimeOK" class="ok"></td>
<td id="meanResponseTimeKO" class="ko"></td>
</tr>
<tr>
<td class="title">Standard Deviation</td>
<td id="standardDeviation" class="total"></td>
<td id="standardDeviationOK" class="ok"></td>
<td id="standardDeviationKO" class="ko"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<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">77.167 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">j.i.IOException: Premature close<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total ko">4835</td>
<td class="value error-col-3 total ko">22.398 %</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">2</span></td>
<td class="value error-col-2 total ko">81</td>
<td class="value error-col-3 total ko">0.375 %</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">3</span></td>
<td class="value error-col-2 total ko">7</td>
<td class="value error-col-3 total ko">0.032 %</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">4</span></td>
<td class="value error-col-2 total ko">4</td>
<td class="value error-col-3 total ko">0.019 %</td>
</tr>
<tr>
<td class="error-col-1 total ko">jmesPath(saldo).find.ConsistenciaSaldoLimite - Transação, WTF?!<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total ko">2</td>
<td class="value error-col-3 total ko">0.009 %</td>
</tr>
</tbody>
</table>
</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 class="schema geant">
<div id="container_response_time_dispersion" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
var pageStats = stats.contents['req_de-bitos-1025427916'].stats;
$(document).ready(function() {
$('.simulation-tooltip').popover({trigger:'hover', placement:'left'});
setDetailsLinkUrl();
setDetailsMenu();
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: [368, 0],
size: 90,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
rangesChart.setTitle({
text: '<span class="chart_title">Response Time Ranges</span>',
useHTML: true
});
$('#container_errors').sortable('#container_errors');
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.6,4.01,4.14,3.5,3.07,1.72,1.02,0.56,0.34,0.21,0.09,0.07,0.05,0.04,0.05,0.01,0.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.2,3.28,3.25,2.86,2.19,1.41,0.79,0.46,0.27,0.17,0.11,0.13,0.13,0.1,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.01,0.02,0.03,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.02,0.02,0.0,0.02,0.02,0.0,0.03,0.0,0.01,0.01,0.02,0.01,0.01,0.01,0.01,0.01,0.02,0.0,0.01,0.0,0.0,0.02,0.0,0.0,0.02,0.0,0.0,0.0,0.01,0.0,0.0,0.0,0.01,0.01,0.0,0.03,0.03,0.03,0.03,0.02,0.02,0.02,0.03,0.02,0.02,0.02,0.01,0.01,0.02,0.02,0.02,0.02,0.02,0.01,0.24
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responsetimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responsetimepercentilesovertimeokPercentiles = unpack([[1708738088,null],[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,null],[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,null],[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,null],[1708738333,[6,6,6,6,6,6,6,6,6,6]],[1708738334,[5,5,6,7,7,7,7,7,7,8]],[1708738335,[4,4,5,6,6,7,7,7,7,8]],[1708738336,[5,5,6,6,6,6,7,8,8,9]],[1708738337,[4,5,6,6,6,6,7,8,8,9]],[1708738338,[5,5,5,6,6,6,6,6,6,6]],[1708738339,[4,4,5,6,6,6,6,6,6,6]],[1708738340,[3,5,5,5,5,6,6,16,32,37]],[1708738341,[4,5,5,5,5,5,6,6,6,6]],[1708738342,[3,4,5,5,5,6,6,7,7,8]],[1708738343,[4,5,5,5,5,5,6,6,6,6]],[1708738344,[4,5,5,5,6,6,6,7,7,7]],[1708738345,[4,4,5,5,5,5,5,9,21,24]],[1708738346,[4,4,5,5,5,5,5,6,7,8]],[1708738347,[4,4,5,6,6,6,6,8,8,9]],[1708738348,[4,5,5,7,8,10,36,42,62,68]],[1708738349,[3,4,4,5,5,5,5,5,7,8]],[1708738350,[3,4,4,4,5,5,5,5,5,6]],[1708738351,[3,4,4,5,5,5,5,5,5,5]],[1708738352,[2,3,3,4,4,4,4,5,8,10]],[1708738353,[2,4,4,5,5,5,5,6,8,9]],[1708738354,[3,4,4,4,4,5,5,6,7,7]],[1708738355,[3,4,4,5,5,5,6,6,7,7]],[1708738356,[3,3,4,5,5,6,6,7,7,8]],[1708738357,[2,3,4,5,6,6,6,6,7,7]],[1708738358,[2,3,4,4,4,4,4,4,5,6]],[1708738359,[3,4,5,7,7,24,46,57,84,90]],[1708738360,[3,3,4,4,4,4,5,5,6,7]],[1708738361,[3,4,4,4,4,5,5,6,6,7]],[1708738362,[2,3,3,4,4,4,4,4,5,5]],[1708738363,[2,3,3,4,4,5,5,5,8,10]],[1708738364,[2,3,4,4,4,4,4,5,7,7]],[1708738365,[3,4,4,4,5,6,6,7,7,7]],[1708738366,[2,3,4,4,5,5,5,6,7,8]],[1708738367,[3,4,4,4,5,5,6,6,7,8]],[1708738368,[3,4,4,6,6,6,7,7,7,7]],[1708738369,[2,4,6,64,79,101,124,158,201,220]],[1708738370,[3,3,4,4,5,5,6,6,6,7]],[1708738371,[3,4,4,4,4,4,5,5,6,6]],[1708738372,[2,3,4,4,4,4,4,5,6,7]],[1708738373,[2,3,3,4,4,4,4,4,5,5]],[1708738374,[2,3,3,3,3,3,4,5,5,7]],[1708738375,[2,3,4,4,4,4,5,6,10,15]],[1708738376,[2,4,4,4,4,4,5,5,6,6]],[1708738377,[2,4,4,4,5,6,6,6,6,7]],[1708738378,[3,4,4,4,4,6,6,7,12,20]],[1708738379,[2,3,4,5,6,13,48,84,172,226]],[1708738380,[2,3,4,14,47,65,102,120,169,189]],[1708738381,[2,3,3,4,4,5,6,6,9,15]],[1708738382,[2,3,3,4,5,5,6,6,7,7]],[1708738383,[2,3,3,4,4,5,6,6,6,7]],[1708738384,[2,3,4,4,4,4,4,5,6,6]],[1708738385,[3,4,99,157,162,169,180,213,312,343]],[1708738386,[2,3,4,33,43,67,75,90,115,121]],[1708738387,[2,3,4,4,4,5,5,5,7,9]],[1708738388,[2,3,3,4,4,4,4,5,6,6]],[1708738389,[2,3,3,4,5,6,6,6,6,6]],[1708738390,[2,6,74,196,226,256,298,328,402,443]],[1708738391,[2,3,3,4,4,6,6,6,7,14]],[1708738392,[2,3,4,4,5,6,6,6,7,8]],[1708738393,[2,3,4,4,4,5,5,6,7,7]],[1708738394,[3,4,4,4,4,4,5,5,7,7]],[1708738395,[2,3,4,4,4,5,5,5,7,11]],[1708738396,[2,3,3,4,4,4,4,5,6,6]],[1708738397,[2,3,3,4,4,5,5,6,6,7]],[1708738398,[2,3,3,4,4,4,4,4,5,6]],[1708738399,[2,3,3,4,4,5,5,5,6,11]],[1708738400,[2,3,4,97,134,153,191,253,326,388]],[1708738401,[2,3,4,49,88,118,147,177,213,262]],[1708738402,[2,3,3,4,4,4,5,5,6,6]],[1708738403,[2,3,3,4,4,5,5,5,6,7]],[1708738404,[2,3,3,3,3,4,4,5,6,6]],[1708738405,[2,3,3,4,4,4,4,4,5,6]],[1708738406,[2,3,3,4,4,4,4,4,5,6]],[1708738407,[2,3,3,4,4,5,5,5,6,6]],[1708738408,[2,3,3,3,4,4,4,5,6,10]],[1708738409,[2,3,3,4,4,5,5,5,6,7]],[1708738410,[2,3,3,4,4,4,4,5,7,9]],[1708738411,[3,87,165,273,298,340,376,443,507,576]],[1708738412,[2,3,4,5,6,10,23,34,51,64]],[1708738413,[2,3,4,4,4,4,5,5,6,6]],[1708738414,[2,3,4,5,5,6,6,6,6,6]],[1708738415,[2,3,4,6,6,6,6,6,7,7]],[1708738416,[2,3,4,4,4,5,6,6,6,10]],[1708738417,[2,3,3,4,4,5,5,5,7,10]],[1708738418,[2,3,4,4,5,5,6,9,24,28]],[1708738419,[2,3,4,4,5,5,5,6,8,13]],[1708738420,[2,3,3,3,4,4,4,5,8,17]],[1708738421,[2,3,7,393,433,471,552,632,840,921]],[1708738422,[70,214,289,363,388,402,462,595,777,896]],[1708738423,[61,159,206,267,280,292,331,367,442,476]],[1708738424,[34,102,138,171,181,196,209,245,314,381]],[1708738425,[22,62,83,99,111,122,142,156,189,211]],[1708738426,[17,46,72,87,90,97,110,119,143,147]],[1708738427,[17,51,72,97,109,119,135,163,206,313]],[1708738428,[23,98,119,154,162,169,180,223,288,437]],[1708738429,[18,91,111,150,159,166,179,213,254,283]],[1708738430,[41,102,134,179,184,198,209,252,322,409]],[1708738431,[87,143,189,254,289,331,389,532,938,978]],[1708738432,[66,417,561,694,703,755,805,869,998,1129]],[1708738433,[61,152,201,248,261,284,302,348,374,414]],[1708738434,null],[1708738435,null],[1708738436,null],[1708738437,null],[1708738438,null],[1708738439,null],[1708738440,null],[1708738441,[4,4,4,4,4,4,4,4,4,5]],[1708738442,[6,20,34,43,45,47,49,51,52,53]],[1708738443,[5,5,5,5,5,5,5,5,5,6]],[1708738444,[4,4,4,4,4,4,4,4,4,5]],[1708738445,[4,4,5,7,8,8,9,9,9,10]],[1708738446,[10,10,10,10,10,10,10,10,10,10]],[1708738447,[5,5,5,5,5,5,5,5,5,5]],[1708738448,[4,4,4,5,5,5,6,6,6,6]],[1708738449,[4,5,6,7,7,7,7,7,7,8]],[1708738450,null],[1708738451,null],[1708738452,null],[1708738453,null],[1708738454,null],[1708738455,[2,6,54,124,141,151,176,201,267,267]],[1708738456,[110,230,315,428,448,475,515,549,620,779]],[1708738457,[32,131,185,230,253,282,319,350,400,453]],[1708738458,[4,31,52,67,72,76,83,97,108,112]],[1708738459,[5,37,57,71,76,82,87,97,141,153]],[1708738460,[7,36,59,72,76,82,92,108,143,317]],[1708738461,[49,388,656,1008,1087,1302,1698,1828,2457,2852]],[1708738462,[428,1238,1495,1888,1920,2033,2113,2263,2489,2674]],[1708738463,[646,1359,1415,1456,1464,1477,1485,1498,1513,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,127,202,239,290,336,436,722,832]],[1708738472,[165,493,730,1257,1459,1603,1894,2364,3725,3980]],[1708738473,[128,1195,1874,2664,2695,3371,3459,4217,5060,5987]],[1708738474,[687,1876,2361,3132,3173,3836,3971,4818,6095,6567]],[1708738475,[20,1678,2471,3288,3310,4069,4129,4469,5937,7751]],[1708738476,[1595,1644,2442,3295,3317,3348,4139,5026,5501,6056]],[1708738477,[798,2467,2530,3489,3514,4301,4344,4375,5543,6476]],[1708738478,[853,2553,2707,3555,3576,4363,4427,4463,6043,6583]],[1708738479,[843,2673,2722,3585,3626,3758,4563,4847,5715,6419]],[1708738480,[937,1864,2706,3670,3713,3872,3928,3968,3983,4831]],[1708738481,[850,1771,2691,2979,2988,3000,3119,3872,3887,3888]],[1708738482,[935,2110,2145,2173,2177,2184,2193,2212,3024,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,117,220,246,265,287,429,587,1046]],[1708738496,[17,423,628,899,1050,1313,1838,8490,9215,11048]],[1708738497,[283,987,1314,1963,2387,3203,7976,8748,10056,10095]],[1708738498,[416,1385,1752,2697,3291,3931,6812,7459,8381,8873]],[1708738499,[582,1860,2625,3784,4351,4768,6213,6849,8807,10023]],[1708738500,[700,1806,2744,3643,4045,4789,5364,6182,7578,8500]],[1708738501,[890,1880,2046,3686,4190,4508,5096,5640,6330,8025]],[1708738502,[71,2085,2760,3713,4006,4414,4757,5208,6064,6312]],[1708738503,[1184,2306,2791,3324,3477,3654,4413,4558,5187,5432]],[1708738504,[570,955,1504,2226,2239,2250,2923,2979,3906,3958]],[1708738505,[587,1275,1780,2238,2259,2592,2993,3176,3812,3878]],[1708738506,[703,1560,1780,2585,2625,2668,2694,3227,3353,3364]],[1708738507,[1010,1907,2004,2034,2049,2058,2061,2071,2072,2073]],[1708738508,null],[1708738509,null],[1708738510,null],[1708738511,null],[1708738512,null],[1708738513,null],[1708738514,null],[1708738515,[5,49,139,217,229,253,353,427,657,740]],[1708738516,[223,498,750,1103,1262,1440,1556,2016,2687,2867]],[1708738517,[353,1145,1660,2331,2509,2657,2765,2966,3447,4373]],[1708738518,[1225,1660,2307,2500,2558,2606,2787,3106,3181,3223]],[1708738519,[948,1754,1785,1828,1831,1840,1853,1861,1869,1871]],[1708738520,[17,976,1051,1145,1196,1218,1229,1260,1328,1345]],[1708738521,[179,316,444,654,679,735,811,860,1110,1876]],[1708738522,[254,712,995,1469,1516,1714,1851,2311,3584,3815]],[1708738523,[666,1384,1899,2570,2674,2870,2958,3121,3318,3352]],[1708738524,[1158,1819,1862,1909,1929,1940,1974,2124,2532,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,38,96,196,215,241,283,326,395,429]],[1708738533,[187,448,672,1011,1184,1293,1643,2097,3969,6640]],[1708738534,[662,1140,1710,2590,2796,3143,3515,3874,4804,5442]],[1708738535,[546,2017,2663,3535,3933,4080,4497,4994,5964,6600]],[1708738536,[1648,1834,2718,3697,3766,3785,4630,4896,5793,5810]],[1708738537,[8,1955,2859,4004,4054,4825,4988,6344,6813,7818]],[1708738538,[960,1978,3125,4286,4676,5156,5494,6115,7214,7365]],[1708738539,[2107,2156,3149,4181,4351,4641,4896,5186,5798,5844]],[1708738540,[1171,2812,3509,4409,4707,4844,5405,5590,5677,5737]],[1708738541,[1107,1931,2494,2971,3449,3581,3825,3941,5060,5063]],[1708738542,[674,1302,2293,2465,3087,3212,3237,3249,3279,3329]],[1708738543,[31,1504,1990,2080,2091,2505,2621,2698,2721,2727]],[1708738544,[89,1110,1162,1185,1189,1189,1189,1189,1189,1189]],[1708738545,null],[1708738546,null],[1708738547,null],[1708738548,null],[1708738549,null],[1708738550,null],[1708738551,null],[1708738552,null],[1708738553,[3,48,119,208,242,289,330,441,452,530]],[1708738554,[206,462,685,1042,1209,1404,1647,2243,3315,4771]],[1708738555,[418,1204,1728,2522,2737,3014,3309,3874,4550,4797]],[1708738556,[18,2024,2369,3270,3753,4048,4263,5110,6025,6837]],[1708738557,[771,2261,2640,3616,3707,4562,4819,5127,5716,5908]],[1708738558,[1671,1819,2742,3499,3773,3838,4159,4373,5167,5861]],[1708738559,[887,1951,2002,2947,3103,3307,3505,3667,4218,4243]],[1708738560,[1014,1869,2139,2588,2599,2611,2670,2764,4234,4859]],[1708738561,[362,883,1233,1620,1720,1735,1849,2061,2122,2130]],[1708738562,[256,538,768,1057,1112,1189,1234,1379,1591,1736]],[1708738563,[302,669,968,1271,1281,1300,1584,1636,2395,2991]],[1708738564,[45,721,1105,1551,1663,1844,2282,3032,3733,4485]],[1708738565,[445,1291,1927,2328,2423,2689,2874,3117,3484,3488]],[1708738566,[586,1603,1927,2426,2433,2471,2500,2557,2598,2603]],[1708738567,[887,889,943,961,973,985,997,1009,1018,1021]],[1708738568,null],[1708738569,null],[1708738570,null],[1708738571,null],[1708738572,[6,60,155,250,277,318,363,488,651,654]],[1708738573,[136,317,374,471,491,512,537,586,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],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 4
},
{
pointInterval: 1000,
name: '95%',
data: responsetimepercentilesovertimeokPercentiles[7],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 3
},
{
pointInterval: 1000,
name: '99%',
data: responsetimepercentilesovertimeokPercentiles[8],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 2
},
{
pointInterval: 1000,
name: 'max',
data: responsetimepercentilesovertimeokPercentiles[9],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 1
},
allUsersData
]
});
responsetimepercentilesovertimeokPercentilesChart.setTitle({
text: '<span class="chart_title chart_title_">Response Time Percentiles over Time (OK)</span>',
useHTML: true
});
var requests = unpack([[1708738088,[0,0,0]],[1708738089,[0,0,0]],[1708738090,[0,0,0]],[1708738091,[0,0,0]],[1708738092,[0,0,0]],[1708738093,[0,0,0]],[1708738094,[0,0,0]],[1708738095,[0,0,0]],[1708738096,[0,0,0]],[1708738097,[0,0,0]],[1708738098,[0,0,0]],[1708738099,[0,0,0]],[1708738100,[0,0,0]],[1708738101,[0,0,0]],[1708738102,[0,0,0]],[1708738103,[0,0,0]],[1708738104,[0,0,0]],[1708738105,[0,0,0]],[1708738106,[0,0,0]],[1708738107,[0,0,0]],[1708738108,[0,0,0]],[1708738109,[0,0,0]],[1708738110,[0,0,0]],[1708738111,[0,0,0]],[1708738112,[0,0,0]],[1708738113,[0,0,0]],[1708738114,[0,0,0]],[1708738115,[0,0,0]],[1708738116,[0,0,0]],[1708738117,[0,0,0]],[1708738118,[0,0,0]],[1708738119,[0,0,0]],[1708738120,[0,0,0]],[1708738121,[0,0,0]],[1708738122,[0,0,0]],[1708738123,[0,0,0]],[1708738124,[0,0,0]],[1708738125,[0,0,0]],[1708738126,[0,0,0]],[1708738127,[0,0,0]],[1708738128,[0,0,0]],[1708738129,[0,0,0]],[1708738130,[0,0,0]],[1708738131,[0,0,0]],[1708738132,[0,0,0]],[1708738133,[0,0,0]],[1708738134,[0,0,0]],[1708738135,[0,0,0]],[1708738136,[0,0,0]],[1708738137,[0,0,0]],[1708738138,[0,0,0]],[1708738139,[0,0,0]],[1708738140,[0,0,0]],[1708738141,[0,0,0]],[1708738142,[0,0,0]],[1708738143,[0,0,0]],[1708738144,[0,0,0]],[1708738145,[0,0,0]],[1708738146,[0,0,0]],[1708738147,[0,0,0]],[1708738148,[0,0,0]],[1708738149,[0,0,0]],[1708738150,[0,0,0]],[1708738151,[0,0,0]],[1708738152,[0,0,0]],[1708738153,[0,0,0]],[1708738154,[0,0,0]],[1708738155,[0,0,0]],[1708738156,[0,0,0]],[1708738157,[0,0,0]],[1708738158,[0,0,0]],[1708738159,[0,0,0]],[1708738160,[0,0,0]],[1708738161,[0,0,0]],[1708738162,[0,0,0]],[1708738163,[0,0,0]],[1708738164,[0,0,0]],[1708738165,[0,0,0]],[1708738166,[0,0,0]],[1708738167,[0,0,0]],[1708738168,[0,0,0]],[1708738169,[0,0,0]],[1708738170,[0,0,0]],[1708738171,[0,0,0]],[1708738172,[0,0,0]],[1708738173,[0,0,0]],[1708738174,[0,0,0]],[1708738175,[0,0,0]],[1708738176,[0,0,0]],[1708738177,[0,0,0]],[1708738178,[0,0,0]],[1708738179,[0,0,0]],[1708738180,[0,0,0]],[1708738181,[0,0,0]],[1708738182,[0,0,0]],[1708738183,[0,0,0]],[1708738184,[0,0,0]],[1708738185,[0,0,0]],[1708738186,[0,0,0]],[1708738187,[0,0,0]],[1708738188,[0,0,0]],[1708738189,[0,0,0]],[1708738190,[0,0,0]],[1708738191,[0,0,0]],[1708738192,[0,0,0]],[1708738193,[0,0,0]],[1708738194,[0,0,0]],[1708738195,[0,0,0]],[1708738196,[0,0,0]],[1708738197,[0,0,0]],[1708738198,[0,0,0]],[1708738199,[0,0,0]],[1708738200,[0,0,0]],[1708738201,[0,0,0]],[1708738202,[0,0,0]],[1708738203,[0,0,0]],[1708738204,[0,0,0]],[1708738205,[0,0,0]],[1708738206,[0,0,0]],[1708738207,[0,0,0]],[1708738208,[0,0,0]],[1708738209,[0,0,0]],[1708738210,[0,0,0]],[1708738211,[0,0,0]],[1708738212,[0,0,0]],[1708738213,[0,0,0]],[1708738214,[0,0,0]],[1708738215,[0,0,0]],[1708738216,[0,0,0]],[1708738217,[0,0,0]],[1708738218,[0,0,0]],[1708738219,[0,0,0]],[1708738220,[0,0,0]],[1708738221,[0,0,0]],[1708738222,[0,0,0]],[1708738223,[0,0,0]],[1708738224,[0,0,0]],[1708738225,[0,0,0]],[1708738226,[0,0,0]],[1708738227,[0,0,0]],[1708738228,[0,0,0]],[1708738229,[0,0,0]],[1708738230,[0,0,0]],[1708738231,[0,0,0]],[1708738232,[0,0,0]],[1708738233,[0,0,0]],[1708738234,[0,0,0]],[1708738235,[0,0,0]],[1708738236,[0,0,0]],[1708738237,[0,0,0]],[1708738238,[0,0,0]],[1708738239,[0,0,0]],[1708738240,[0,0,0]],[1708738241,[0,0,0]],[1708738242,[0,0,0]],[1708738243,[0,0,0]],[1708738244,[0,0,0]],[1708738245,[0,0,0]],[1708738246,[0,0,0]],[1708738247,[0,0,0]],[1708738248,[0,0,0]],[1708738249,[0,0,0]],[1708738250,[0,0,0]],[1708738251,[0,0,0]],[1708738252,[0,0,0]],[1708738253,[0,0,0]],[1708738254,[0,0,0]],[1708738255,[0,0,0]],[1708738256,[0,0,0]],[1708738257,[0,0,0]],[1708738258,[0,0,0]],[1708738259,[0,0,0]],[1708738260,[0,0,0]],[1708738261,[0,0,0]],[1708738262,[0,0,0]],[1708738263,[0,0,0]],[1708738264,[0,0,0]],[1708738265,[0,0,0]],[1708738266,[0,0,0]],[1708738267,[0,0,0]],[1708738268,[0,0,0]],[1708738269,[0,0,0]],[1708738270,[0,0,0]],[1708738271,[0,0,0]],[1708738272,[0,0,0]],[1708738273,[0,0,0]],[1708738274,[0,0,0]],[1708738275,[0,0,0]],[1708738276,[0,0,0]],[1708738277,[0,0,0]],[1708738278,[0,0,0]],[1708738279,[0,0,0]],[1708738280,[0,0,0]],[1708738281,[0,0,0]],[1708738282,[0,0,0]],[1708738283,[0,0,0]],[1708738284,[0,0,0]],[1708738285,[0,0,0]],[1708738286,[0,0,0]],[1708738287,[0,0,0]],[1708738288,[0,0,0]],[1708738289,[0,0,0]],[1708738290,[0,0,0]],[1708738291,[0,0,0]],[1708738292,[0,0,0]],[1708738293,[0,0,0]],[1708738294,[0,0,0]],[1708738295,[0,0,0]],[1708738296,[0,0,0]],[1708738297,[0,0,0]],[1708738298,[0,0,0]],[1708738299,[0,0,0]],[1708738300,[0,0,0]],[1708738301,[0,0,0]],[1708738302,[0,0,0]],[1708738303,[0,0,0]],[1708738304,[0,0,0]],[1708738305,[0,0,0]],[1708738306,[0,0,0]],[1708738307,[0,0,0]],[1708738308,[0,0,0]],[1708738309,[0,0,0]],[1708738310,[0,0,0]],[1708738311,[0,0,0]],[1708738312,[0,0,0]],[1708738313,[0,0,0]],[1708738314,[0,0,0]],[1708738315,[0,0,0]],[1708738316,[0,0,0]],[1708738317,[0,0,0]],[1708738318,[0,0,0]],[1708738319,[0,0,0]],[1708738320,[0,0,0]],[1708738321,[0,0,0]],[1708738322,[0,0,0]],[1708738323,[0,0,0]],[1708738324,[0,0,0]],[1708738325,[0,0,0]],[1708738326,[0,0,0]],[1708738327,[0,0,0]],[1708738328,[0,0,0]],[1708738329,[0,0,0]],[1708738330,[0,0,0]],[1708738331,[0,0,0]],[1708738332,[0,0,0]],[1708738333,[1,1,0]],[1708738334,[3,2,1]],[1708738335,[5,3,2]],[1708738336,[6,6,0]],[1708738337,[8,7,1]],[1708738338,[10,5,5]],[1708738339,[12,8,4]],[1708738340,[14,14,0]],[1708738341,[16,9,7]],[1708738342,[17,14,3]],[1708738343,[20,15,5]],[1708738344,[21,15,6]],[1708738345,[23,17,6]],[1708738346,[24,22,2]],[1708738347,[27,20,7]],[1708738348,[28,21,7]],[1708738349,[30,26,4]],[1708738350,[32,24,8]],[1708738351,[34,24,10]],[1708738352,[36,25,11]],[1708738353,[38,29,9]],[1708738354,[39,28,11]],[1708738355,[41,29,12]],[1708738356,[43,32,11]],[1708738357,[45,35,10]],[1708738358,[47,37,10]],[1708738359,[48,37,11]],[1708738360,[51,35,16]],[1708738361,[52,39,13]],[1708738362,[54,43,11]],[1708738363,[55,41,14]],[1708738364,[58,44,14]],[1708738365,[59,47,12]],[1708738366,[61,40,21]],[1708738367,[63,50,13]],[1708738368,[65,47,18]],[1708738369,[67,54,13]],[1708738370,[69,56,13]],[1708738371,[70,50,20]],[1708738372,[72,52,20]],[1708738373,[74,57,17]],[1708738374,[76,59,17]],[1708738375,[78,59,19]],[1708738376,[80,59,21]],[1708738377,[81,60,21]],[1708738378,[83,61,22]],[1708738379,[85,65,20]],[1708738380,[87,64,23]],[1708738381,[88,62,26]],[1708738382,[91,75,16]],[1708738383,[92,89,3]],[1708738384,[94,92,2]],[1708738385,[96,93,3]],[1708738386,[98,98,0]],[1708738387,[99,99,0]],[1708738388,[102,102,0]],[1708738389,[103,103,0]],[1708738390,[105,105,0]],[1708738391,[107,107,0]],[1708738392,[109,109,0]],[1708738393,[110,110,0]],[1708738394,[112,112,0]],[1708738395,[114,111,3]],[1708738396,[117,98,19]],[1708738397,[118,104,14]],[1708738398,[119,106,13]],[1708738399,[122,107,15]],[1708738400,[123,107,16]],[1708738401,[125,109,16]],[1708738402,[127,112,15]],[1708738403,[129,113,16]],[1708738404,[130,114,16]],[1708738405,[133,117,16]],[1708738406,[134,118,16]],[1708738407,[136,119,17]],[1708738408,[138,122,16]],[1708738409,[140,121,19]],[1708738410,[141,125,16]],[1708738411,[143,121,22]],[1708738412,[146,131,15]],[1708738413,[147,139,8]],[1708738414,[148,147,1]],[1708738415,[151,151,0]],[1708738416,[153,153,0]],[1708738417,[154,153,1]],[1708738418,[156,152,4]],[1708738419,[158,156,2]],[1708738420,[160,159,1]],[1708738421,[162,160,2]],[1708738422,[163,163,0]],[1708738423,[166,164,2]],[1708738424,[167,165,2]],[1708738425,[169,168,1]],[1708738426,[170,169,1]],[1708738427,[173,173,0]],[1708738428,[174,173,1]],[1708738429,[176,175,1]],[1708738430,[178,177,1]],[1708738431,[180,177,3]],[1708738432,[182,119,63]],[1708738433,[184,75,109]],[1708738434,[185,0,185]],[1708738435,[187,0,187]],[1708738436,[189,0,189]],[1708738437,[191,0,191]],[1708738438,[193,0,193]],[1708738439,[194,0,194]],[1708738440,[197,0,197]],[1708738441,[197,2,195]],[1708738442,[201,3,198]],[1708738443,[201,4,197]],[1708738444,[204,5,199]],[1708738445,[205,3,202]],[1708738446,[207,1,206]],[1708738447,[209,2,207]],[1708738448,[211,9,202]],[1708738449,[213,3,210]],[1708738450,[215,0,215]],[1708738451,[216,0,216]],[1708738452,[218,0,218]],[1708738453,[220,0,220]],[1708738454,[220,0,220]],[1708738455,[220,74,146]],[1708738456,[220,185,35]],[1708738457,[220,147,73]],[1708738458,[220,151,69]],[1708738459,[220,165,55]],[1708738460,[220,163,57]],[1708738461,[220,209,11]],[1708738462,[220,134,86]],[1708738463,[220,33,187]],[1708738464,[220,1,219]],[1708738465,[220,0,220]],[1708738466,[220,0,220]],[1708738467,[220,0,220]],[1708738468,[220,0,220]],[1708738469,[220,0,220]],[1708738470,[220,0,220]],[1708738471,[220,105,115]],[1708738472,[220,220,0]],[1708738473,[220,220,0]],[1708738474,[220,220,0]],[1708738475,[220,193,27]],[1708738476,[220,162,58]],[1708738477,[220,163,57]],[1708738478,[220,163,57]],[1708738479,[220,155,65]],[1708738480,[220,132,88]],[1708738481,[220,90,130]],[1708738482,[220,46,174]],[1708738483,[220,3,217]],[1708738484,[220,0,220]],[1708738485,[220,0,220]],[1708738486,[220,0,220]],[1708738487,[220,0,220]],[1708738488,[220,0,220]],[1708738489,[220,0,220]],[1708738490,[220,0,220]],[1708738491,[220,0,220]],[1708738492,[220,0,220]],[1708738493,[220,0,220]],[1708738494,[220,0,220]],[1708738495,[220,107,113]],[1708738496,[220,220,0]],[1708738497,[220,219,1]],[1708738498,[220,218,2]],[1708738499,[220,212,8]],[1708738500,[220,175,45]],[1708738501,[220,117,103]],[1708738502,[220,49,171]],[1708738503,[220,29,191]],[1708738504,[220,59,161]],[1708738505,[220,98,122]],[1708738506,[220,121,99]],[1708738507,[220,18,202]],[1708738508,[220,0,220]],[1708738509,[220,0,220]],[1708738510,[220,0,220]],[1708738511,[220,0,220]],[1708738512,[220,0,220]],[1708738513,[220,0,220]],[1708738514,[220,0,220]],[1708738515,[220,103,117]],[1708738516,[220,218,2]],[1708738517,[220,198,22]],[1708738518,[220,126,94]],[1708738519,[220,34,186]],[1708738520,[220,16,204]],[1708738521,[220,96,124]],[1708738522,[220,218,2]],[1708738523,[220,153,67]],[1708738524,[220,32,188]],[1708738525,[220,2,218]],[1708738526,[220,0,220]],[1708738527,[220,0,220]],[1708738528,[220,0,220]],[1708738529,[220,0,220]],[1708738530,[220,0,220]],[1708738531,[220,0,220]],[1708738532,[220,104,116]],[1708738533,[220,220,0]],[1708738534,[220,220,0]],[1708738535,[220,219,1]],[1708738536,[220,211,9]],[1708738537,[220,184,36]],[1708738538,[220,152,68]],[1708738539,[220,110,110]],[1708738540,[220,54,166]],[1708738541,[220,50,170]],[1708738542,[220,95,125]],[1708738543,[220,64,156]],[1708738544,[220,6,214]],[1708738545,[220,0,220]],[1708738546,[220,0,220]],[1708738547,[220,0,220]],[1708738548,[220,0,220]],[1708738549,[220,0,220]],[1708738550,[220,0,220]],[1708738551,[220,0,220]],[1708738552,[220,0,220]],[1708738553,[220,104,116]],[1708738554,[220,220,0]],[1708738555,[220,220,0]],[1708738556,[220,210,10]],[1708738557,[220,189,31]],[1708738558,[220,142,78]],[1708738559,[220,63,157]],[1708738560,[220,32,188]],[1708738561,[220,26,194]],[1708738562,[220,113,107]],[1708738563,[220,171,49]],[1708738564,[220,166,54]],[1708738565,[220,173,47]],[1708738566,[220,70,150]],[1708738567,[220,5,215]],[1708738568,[220,0,220]],[1708738569,[220,0,220]],[1708738570,[220,0,220]],[1708738571,[220,0,220]],[1708738572,[220,103,117]],[1708738573,[107,107,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'requests',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: { text: 'Number of requests' },
opposite: false,
reversedStacks: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FFA900' }
},
opposite: true
}
],
series: [
{
color: '#5E7BE2',
name: 'All',
data: requests[0],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
allUsersData
]
});
requestsChart.setTitle({
text: '<span class="chart_title">Number of requests per second</span>',
useHTML: true
});
var responses = unpack([[1708738088,[0,0,0]],[1708738089,[0,0,0]],[1708738090,[0,0,0]],[1708738091,[0,0,0]],[1708738092,[0,0,0]],[1708738093,[0,0,0]],[1708738094,[0,0,0]],[1708738095,[0,0,0]],[1708738096,[0,0,0]],[1708738097,[0,0,0]],[1708738098,[0,0,0]],[1708738099,[0,0,0]],[1708738100,[0,0,0]],[1708738101,[0,0,0]],[1708738102,[0,0,0]],[1708738103,[0,0,0]],[1708738104,[0,0,0]],[1708738105,[0,0,0]],[1708738106,[0,0,0]],[1708738107,[0,0,0]],[1708738108,[0,0,0]],[1708738109,[0,0,0]],[1708738110,[0,0,0]],[1708738111,[0,0,0]],[1708738112,[0,0,0]],[1708738113,[0,0,0]],[1708738114,[0,0,0]],[1708738115,[0,0,0]],[1708738116,[0,0,0]],[1708738117,[0,0,0]],[1708738118,[0,0,0]],[1708738119,[0,0,0]],[1708738120,[0,0,0]],[1708738121,[0,0,0]],[1708738122,[0,0,0]],[1708738123,[0,0,0]],[1708738124,[0,0,0]],[1708738125,[0,0,0]],[1708738126,[0,0,0]],[1708738127,[0,0,0]],[1708738128,[0,0,0]],[1708738129,[0,0,0]],[1708738130,[0,0,0]],[1708738131,[0,0,0]],[1708738132,[0,0,0]],[1708738133,[0,0,0]],[1708738134,[0,0,0]],[1708738135,[0,0,0]],[1708738136,[0,0,0]],[1708738137,[0,0,0]],[1708738138,[0,0,0]],[1708738139,[0,0,0]],[1708738140,[0,0,0]],[1708738141,[0,0,0]],[1708738142,[0,0,0]],[1708738143,[0,0,0]],[1708738144,[0,0,0]],[1708738145,[0,0,0]],[1708738146,[0,0,0]],[1708738147,[0,0,0]],[1708738148,[0,0,0]],[1708738149,[0,0,0]],[1708738150,[0,0,0]],[1708738151,[0,0,0]],[1708738152,[0,0,0]],[1708738153,[0,0,0]],[1708738154,[0,0,0]],[1708738155,[0,0,0]],[1708738156,[0,0,0]],[1708738157,[0,0,0]],[1708738158,[0,0,0]],[1708738159,[0,0,0]],[1708738160,[0,0,0]],[1708738161,[0,0,0]],[1708738162,[0,0,0]],[1708738163,[0,0,0]],[1708738164,[0,0,0]],[1708738165,[0,0,0]],[1708738166,[0,0,0]],[1708738167,[0,0,0]],[1708738168,[0,0,0]],[1708738169,[0,0,0]],[1708738170,[0,0,0]],[1708738171,[0,0,0]],[1708738172,[0,0,0]],[1708738173,[0,0,0]],[1708738174,[0,0,0]],[1708738175,[0,0,0]],[1708738176,[0,0,0]],[1708738177,[0,0,0]],[1708738178,[0,0,0]],[1708738179,[0,0,0]],[1708738180,[0,0,0]],[1708738181,[0,0,0]],[1708738182,[0,0,0]],[1708738183,[0,0,0]],[1708738184,[0,0,0]],[1708738185,[0,0,0]],[1708738186,[0,0,0]],[1708738187,[0,0,0]],[1708738188,[0,0,0]],[1708738189,[0,0,0]],[1708738190,[0,0,0]],[1708738191,[0,0,0]],[1708738192,[0,0,0]],[1708738193,[0,0,0]],[1708738194,[0,0,0]],[1708738195,[0,0,0]],[1708738196,[0,0,0]],[1708738197,[0,0,0]],[1708738198,[0,0,0]],[1708738199,[0,0,0]],[1708738200,[0,0,0]],[1708738201,[0,0,0]],[1708738202,[0,0,0]],[1708738203,[0,0,0]],[1708738204,[0,0,0]],[1708738205,[0,0,0]],[1708738206,[0,0,0]],[1708738207,[0,0,0]],[1708738208,[0,0,0]],[1708738209,[0,0,0]],[1708738210,[0,0,0]],[1708738211,[0,0,0]],[1708738212,[0,0,0]],[1708738213,[0,0,0]],[1708738214,[0,0,0]],[1708738215,[0,0,0]],[1708738216,[0,0,0]],[1708738217,[0,0,0]],[1708738218,[0,0,0]],[1708738219,[0,0,0]],[1708738220,[0,0,0]],[1708738221,[0,0,0]],[1708738222,[0,0,0]],[1708738223,[0,0,0]],[1708738224,[0,0,0]],[1708738225,[0,0,0]],[1708738226,[0,0,0]],[1708738227,[0,0,0]],[1708738228,[0,0,0]],[1708738229,[0,0,0]],[1708738230,[0,0,0]],[1708738231,[0,0,0]],[1708738232,[0,0,0]],[1708738233,[0,0,0]],[1708738234,[0,0,0]],[1708738235,[0,0,0]],[1708738236,[0,0,0]],[1708738237,[0,0,0]],[1708738238,[0,0,0]],[1708738239,[0,0,0]],[1708738240,[0,0,0]],[1708738241,[0,0,0]],[1708738242,[0,0,0]],[1708738243,[0,0,0]],[1708738244,[0,0,0]],[1708738245,[0,0,0]],[1708738246,[0,0,0]],[1708738247,[0,0,0]],[1708738248,[0,0,0]],[1708738249,[0,0,0]],[1708738250,[0,0,0]],[1708738251,[0,0,0]],[1708738252,[0,0,0]],[1708738253,[0,0,0]],[1708738254,[0,0,0]],[1708738255,[0,0,0]],[1708738256,[0,0,0]],[1708738257,[0,0,0]],[1708738258,[0,0,0]],[1708738259,[0,0,0]],[1708738260,[0,0,0]],[1708738261,[0,0,0]],[1708738262,[0,0,0]],[1708738263,[0,0,0]],[1708738264,[0,0,0]],[1708738265,[0,0,0]],[1708738266,[0,0,0]],[1708738267,[0,0,0]],[1708738268,[0,0,0]],[1708738269,[0,0,0]],[1708738270,[0,0,0]],[1708738271,[0,0,0]],[1708738272,[0,0,0]],[1708738273,[0,0,0]],[1708738274,[0,0,0]],[1708738275,[0,0,0]],[1708738276,[0,0,0]],[1708738277,[0,0,0]],[1708738278,[0,0,0]],[1708738279,[0,0,0]],[1708738280,[0,0,0]],[1708738281,[0,0,0]],[1708738282,[0,0,0]],[1708738283,[0,0,0]],[1708738284,[0,0,0]],[1708738285,[0,0,0]],[1708738286,[0,0,0]],[1708738287,[0,0,0]],[1708738288,[0,0,0]],[1708738289,[0,0,0]],[1708738290,[0,0,0]],[1708738291,[0,0,0]],[1708738292,[0,0,0]],[1708738293,[0,0,0]],[1708738294,[0,0,0]],[1708738295,[0,0,0]],[1708738296,[0,0,0]],[1708738297,[0,0,0]],[1708738298,[0,0,0]],[1708738299,[0,0,0]],[1708738300,[0,0,0]],[1708738301,[0,0,0]],[1708738302,[0,0,0]],[1708738303,[0,0,0]],[1708738304,[0,0,0]],[1708738305,[0,0,0]],[1708738306,[0,0,0]],[1708738307,[0,0,0]],[1708738308,[0,0,0]],[1708738309,[0,0,0]],[1708738310,[0,0,0]],[1708738311,[0,0,0]],[1708738312,[0,0,0]],[1708738313,[0,0,0]],[1708738314,[0,0,0]],[1708738315,[0,0,0]],[1708738316,[0,0,0]],[1708738317,[0,0,0]],[1708738318,[0,0,0]],[1708738319,[0,0,0]],[1708738320,[0,0,0]],[1708738321,[0,0,0]],[1708738322,[0,0,0]],[1708738323,[0,0,0]],[1708738324,[0,0,0]],[1708738325,[0,0,0]],[1708738326,[0,0,0]],[1708738327,[0,0,0]],[1708738328,[0,0,0]],[1708738329,[0,0,0]],[1708738330,[0,0,0]],[1708738331,[0,0,0]],[1708738332,[0,0,0]],[1708738333,[1,1,0]],[1708738334,[2,2,0]],[1708738335,[3,3,0]],[1708738336,[6,6,0]],[1708738337,[7,7,0]],[1708738338,[5,5,0]],[1708738339,[8,8,0]],[1708738340,[14,14,0]],[1708738341,[9,9,0]],[1708738342,[14,14,0]],[1708738343,[15,15,0]],[1708738344,[15,15,0]],[1708738345,[17,17,0]],[1708738346,[22,22,0]],[1708738347,[20,20,0]],[1708738348,[19,19,0]],[1708738349,[28,28,0]],[1708738350,[24,24,0]],[1708738351,[24,24,0]],[1708738352,[25,25,0]],[1708738353,[29,29,0]],[1708738354,[28,28,0]],[1708738355,[29,29,0]],[1708738356,[32,32,0]],[1708738357,[35,35,0]],[1708738358,[36,36,0]],[1708738359,[38,38,0]],[1708738360,[35,35,0]],[1708738361,[38,38,0]],[1708738362,[43,43,0]],[1708738363,[42,42,0]],[1708738364,[44,44,0]],[1708738365,[47,47,0]],[1708738366,[40,40,0]],[1708738367,[50,50,0]],[1708738368,[47,47,0]],[1708738369,[54,54,0]],[1708738370,[56,56,0]],[1708738371,[50,50,0]],[1708738372,[52,52,0]],[1708738373,[57,57,0]],[1708738374,[59,59,0]],[1708738375,[59,59,0]],[1708738376,[58,58,0]],[1708738377,[60,60,0]],[1708738378,[61,61,0]],[1708738379,[58,58,0]],[1708738380,[71,71,0]],[1708738381,[63,63,0]],[1708738382,[74,74,0]],[1708738383,[90,90,0]],[1708738384,[92,92,0]],[1708738385,[649,80,569]],[1708738386,[112,110,2]],[1708738387,[100,100,0]],[1708738388,[101,101,0]],[1708738389,[103,103,0]],[1708738390,[103,103,0]],[1708738391,[110,110,0]],[1708738392,[108,108,0]],[1708738393,[111,111,0]],[1708738394,[112,112,0]],[1708738395,[111,111,0]],[1708738396,[97,97,0]],[1708738397,[104,104,0]],[1708738398,[107,107,0]],[1708738399,[106,106,0]],[1708738400,[93,93,0]],[1708738401,[124,124,0]],[1708738402,[112,112,0]],[1708738403,[112,112,0]],[1708738404,[115,115,0]],[1708738405,[116,116,0]],[1708738406,[118,118,0]],[1708738407,[120,120,0]],[1708738408,[122,122,0]],[1708738409,[120,120,0]],[1708738410,[126,126,0]],[1708738411,[110,110,0]],[1708738412,[141,141,0]],[1708738413,[139,139,0]],[1708738414,[148,148,0]],[1708738415,[151,151,0]],[1708738416,[153,153,0]],[1708738417,[153,153,0]],[1708738418,[152,152,0]],[1708738419,[156,156,0]],[1708738420,[159,159,0]],[1708738421,[96,96,0]],[1708738422,[177,177,0]],[1708738423,[176,176,0]],[1708738424,[182,182,0]],[1708738425,[173,173,0]],[1708738426,[170,170,0]],[1708738427,[163,163,0]],[1708738428,[171,171,0]],[1708738429,[178,178,0]],[1708738430,[172,172,0]],[1708738431,[166,166,0]],[1708738432,[178,117,61]],[1708738433,[226,117,109]],[1708738434,[185,0,185]],[1708738435,[187,0,187]],[1708738436,[189,0,189]],[1708738437,[191,0,191]],[1708738438,[193,0,193]],[1708738439,[194,0,194]],[1708738440,[196,0,196]],[1708738441,[197,2,195]],[1708738442,[200,3,197]],[1708738443,[202,4,198]],[1708738444,[204,5,199]],[1708738445,[205,3,202]],[1708738446,[207,1,206]],[1708738447,[209,2,207]],[1708738448,[211,9,202]],[1708738449,[213,3,210]],[1708738450,[215,0,215]],[1708738451,[216,0,216]],[1708738452,[218,0,218]],[1708738453,[220,0,220]],[1708738454,[220,0,220]],[1708738455,[197,48,149]],[1708738456,[174,155,19]],[1708738457,[197,183,14]],[1708738458,[172,159,13]],[1708738459,[177,162,15]],[1708738460,[185,169,16]],[1708738461,[615,87,528]],[1708738462,[113,113,0]],[1708738463,[76,76,0]],[1708738464,[330,110,220]],[1708738465,[498,0,498]],[1708738466,[220,0,220]],[1708738467,[220,0,220]],[1708738468,[220,0,220]],[1708738469,[220,0,220]],[1708738470,[220,0,220]],[1708738471,[179,64,115]],[1708738472,[114,114,0]],[1708738473,[88,88,0]],[1708738474,[122,122,0]],[1708738475,[117,116,1]],[1708738476,[144,144,0]],[1708738477,[176,176,0]],[1708738478,[164,164,0]],[1708738479,[152,152,0]],[1708738480,[139,139,0]],[1708738481,[162,162,0]],[1708738482,[159,159,0]],[1708738483,[424,145,279]],[1708738484,[118,118,0]],[1708738485,[1042,9,1033]],[1708738486,[220,0,220]],[1708738487,[220,0,220]],[1708738488,[220,0,220]],[1708738489,[220,0,220]],[1708738490,[220,0,220]],[1708738491,[220,0,220]],[1708738492,[220,0,220]],[1708738493,[220,0,220]],[1708738494,[220,0,220]],[1708738495,[174,61,113]],[1708738496,[130,130,0]],[1708738497,[115,115,0]],[1708738498,[130,130,0]],[1708738499,[131,131,0]],[1708738500,[119,119,0]],[1708738501,[112,112,0]],[1708738502,[135,135,0]],[1708738503,[136,136,0]],[1708738504,[637,66,571]],[1708738505,[330,112,218]],[1708738506,[143,143,0]],[1708738507,[105,105,0]],[1708738508,[93,93,0]],[1708738509,[800,54,746]],[1708738510,[230,0,230]],[1708738511,[220,0,220]],[1708738512,[220,0,220]],[1708738513,[220,0,220]],[1708738514,[220,0,220]],[1708738515,[177,60,117]],[1708738516,[109,109,0]],[1708738517,[114,113,1]],[1708738518,[120,120,0]],[1708738519,[97,97,0]],[1708738520,[116,116,0]],[1708738521,[739,108,631]],[1708738522,[117,117,0]],[1708738523,[105,105,0]],[1708738524,[107,107,0]],[1708738525,[63,63,0]],[1708738526,[624,81,543]],[1708738527,[372,0,372]],[1708738528,[220,0,220]],[1708738529,[220,0,220]],[1708738530,[220,0,220]],[1708738531,[220,0,220]],[1708738532,[180,64,116]],[1708738533,[117,117,0]],[1708738534,[118,118,0]],[1708738535,[117,117,0]],[1708738536,[86,86,0]],[1708738537,[114,114,0]],[1708738538,[165,165,0]],[1708738539,[166,166,0]],[1708738540,[161,161,0]],[1708738541,[143,143,0]],[1708738542,[713,78,635]],[1708738543,[155,125,30]],[1708738544,[108,108,0]],[1708738545,[115,115,0]],[1708738546,[842,12,830]],[1708738547,[220,0,220]],[1708738548,[220,0,220]],[1708738549,[220,0,220]],[1708738550,[220,0,220]],[1708738551,[220,0,220]],[1708738552,[220,0,220]],[1708738553,[177,61,116]],[1708738554,[122,122,0]],[1708738555,[112,112,0]],[1708738556,[97,97,0]],[1708738557,[112,112,0]],[1708738558,[132,132,0]],[1708738559,[144,144,0]],[1708738560,[153,153,0]],[1708738561,[122,122,0]],[1708738562,[904,139,765]],[1708738563,[189,140,49]],[1708738564,[200,146,54]],[1708738565,[131,126,5]],[1708738566,[100,100,0]],[1708738567,[105,105,0]],[1708738568,[333,93,240]],[1708738569,[607,0,607]],[1708738570,[220,0,220]],[1708738571,[220,0,220]],[1708738572,[173,56,117]],[1708738573,[154,154,0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'responses',
zoomType: 'x',
marginBottom: 60
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
symbolRadius: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: {
maskInside: false
},
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: '#CFC9C6',
padding: 1,
stroke: '#000000',
'stroke-width': 0.25,
style: {
color: '#000000',
fontWeight: 'bold',
},
states: {
stroke: '#000000',
'stroke-width': 0.25,
hover: {
fill: '#92918C',
style: { color: 'black' }
},
select: {
fill: '#FFA900',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: { text: 'Number of responses' },
opposite: false,
reversedStacks: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FFA900' }
},
opposite: true
}
],
series: [
{
color: '#5E7BE2',
name: 'All',
data: responses[0],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
},
{
color: '#68b65c',
name: 'OK',
data: responses[1],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
{
color: '#f15b4f',
name: 'KO',
data: responses[2],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
allUsersData,
{
type: 'pie',
name: 'Distribution',
data: [
{name: 'OK', y: 18073.0, color: '#68b65c'},{name: 'KO', y: 21587.0, color: '#f15b4f'}
],
center: [775, -40],
size: 70,
showInLegend: false,
dataLabels: { enabled: false },
dataGrouping: { enabled: false }
}
]
});
requestsChart.setTitle({
text: '<span class="chart_title">Number of responses per second</span>',
useHTML: true
});
var scatterChart = new Highcharts.Chart({
chart: {
renderTo: 'container_response_time_dispersion',
defaultSeriesType: 'scatter',
zoomType: 'xy',
marginBottom: 90
},
credits: { enabled: false },
xAxis: {
title: {
enabled: true,
text: 'Global number of requests per second',
style: { fontWeight: 'bold' }
},
startOnTick: true,
endOnTick: true,
showLastLabel: true,
min: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
yAxis: {
min: 0,
title: { text: 'Response Time (ms)' }
},
tooltip: {
formatter: function() {
return ''+ this.y +' ms at ' + this.x + ' allreq/s';
}
},
legend: {
enabled: true,
floating: true,
y: 0,
borderWidth: 0,
itemStyle: { fontWeight: "normal" },
},
plotOptions: {
scatter: {
marker: {
radius: 3,
states: {
hover: {
enabled: true,
lineColor: 'rgb(100,100,100)'
}
}
},
states: {
hover: {
marker: { enabled: false }
}
}
}
},
series: [
{
type: 'scatter',
color: '#68b65c',
name: 'OK',
data: [
[3,6],[6,7],[9,7],[11,8],[13,8],[18,6],[19,6],[24,16],[26,6],[27,7],[32,6],[34,7],[37,9],[39,6],[43,8],[44,42],[48,5],[50,5],[54,5],[56,5],[61,6],[61,6],[65,6],[67,7],[70,6],[74,4],[76,57],[80,5],[81,6],[84,4],[87,5],[91,5],[92,7],[96,6],[98,6],[101,7],[105,158],[107,6],[110,5],[112,5],[116,4],[119,5],[121,6],[123,5],[127,6],[129,7],[133,84],[134,120],[138,6],[141,6],[143,6],[146,5],[154,5],[156,213],[158,5],[160,6],[164,328],[164,586],[165,6],[170,90],[170,6],[171,6],[174,5],[176,5],[182,5],[183,6],[185,4],[189,5],[191,253],[194,177],[196,5],[200,5],[202,5],[206,4],[207,4],[211,5],[213,5],[217,5],[219,5],[222,443],[226,34],[227,5],[230,6],[233,6],[237,6],[239,5],[242,9],[244,6],[248,5],[251,632],[251,595],[257,367],[259,245],[262,156],[264,119],[267,163],[269,223],[272,213],[275,252],[279,532],[281,869],[285,348],[305,4],[310,51],[312,5],[315,4],[317,9],[321,10],[322,5],[327,6],[329,7],[340,201],[340,549],[340,350],[340,97],[340,97],[340,108],[340,1828],[340,2263],[340,1498],[340,743],[340,436],[340,2364],[340,4217],[340,4818],[340,4469],[340,5026],[340,4375],[340,4463],[340,4847],[340,3968],[340,3872],[340,2212],[340,1257],[340,429],[340,8490],[340,8748],[340,7459],[340,6849],[340,6182],[340,5640],[340,5208],[340,4558],[340,2979],[340,3176],[340,3227],[340,2071],[340,427],[340,2016],[340,2966],[340,3106],[340,1861],[340,1260],[340,860],[340,2311],[340,3121],[340,2124],[340,1153],[340,326],[340,2097],[340,3874],[340,4994],[340,4896],[340,6344],[340,6115],[340,5186],[340,5590],[340,3941],[340,3249],[340,2698],[340,1189],[340,441],[340,2243],[340,3874],[340,5110],[340,5127],[340,4373],[340,3667],[340,2764],[340,2061],[340,1379],[340,1636],[340,3032],[340,3117],[340,2557],[340,1009],[340,488]
]},
{
type: 'scatter',
color: '#f15b4f',
name: 'KO',
data: [
[6,51224],[9,50371],[13,47697],[18,47332],[19,46641],[26,44383],[27,43648],[32,42097],[34,41576],[37,40136],[39,39678],[43,38551],[44,37085],[48,36550],[50,35567],[54,34457],[56,33248],[61,32167],[61,31116],[65,30170],[67,29121],[70,28093],[74,27230],[76,26370],[80,25537],[81,24539],[84,23116],[87,22378],[91,21496],[92,20223],[96,19478],[98,18213],[101,17483],[105,16239],[107,15498],[110,14401],[112,13246],[116,12118],[119,11394],[121,10408],[123,9384],[127,8370],[129,7312],[133,6384],[134,5407],[138,4386],[141,3391],[143,2182],[146,1260],[156,232],[176,60000],[182,60000],[183,60000],[185,60000],[189,60000],[191,60000],[194,60000],[196,59158],[200,58161],[202,57222],[206,56181],[207,55202],[211,54012],[213,53104],[217,52132],[219,50958],[222,50089],[226,48914],[227,48081],[230,46883],[239,43958],[242,42853],[244,41868],[248,40410],[251,40058],[257,37950],[259,36979],[262,36079],[264,34427],[269,32832],[272,31622],[275,30995],[279,29778],[281,1],[285,1],[286,1],[290,0],[291,1],[296,1],[298,0],[300,0],[304,1],[305,1],[310,1],[312,1],[315,1],[317,1],[321,1],[322,1],[327,1],[329,1],[332,1],[334,1],[338,0],[340,1],[340,0],[340,0],[340,4604],[340,4159],[340,3082],[340,2087],[340,1098],[340,3326],[340,2848],[340,1968],[340,920],[340,66],[340,1],[340,1],[340,1],[340,0],[340,1],[340,1],[340,10258],[340,9599],[340,8650],[340,7559],[340,6588],[340,5571],[340,4427],[340,3261],[340,2169],[340,1207],[340,493],[340,2],[340,1],[340,1],[340,1],[340,1],[340,1],[340,1],[340,1],[340,1],[340,1],[340,7885],[340,10648],[340,5745],[340,4850],[340,3757],[340,2827],[340,1832],[340,808],[340,3901],[340,3652],[340,2697],[340,1669],[340,638],[340,3],[340,3],[340,2],[340,2],[340,3],[340,3],[340,4981],[340,4135],[340,3673],[340,2695],[340,1633],[340,667],[340,4431],[340,3768],[340,2846],[340,1792],[340,829],[340,24],[340,1],[340,1],[340,1],[340,1],[340,1],[340,6687],[340,6114],[340,5339],[340,7670],[340,5026],[340,2646],[340,1554],[340,3915],[340,3217],[340,2202],[340,1127],[340,265],[340,1],[340,1],[340,1],[340,1],[340,1],[340,1],[340,0],[340,5963],[340,4980],[340,4046],[340,3079],[340,2086],[340,1066],[340,284],[340,5],[340,3],[340,3767],[340,2995],[340,1967],[340,925],[340,81],[340,3],[340,3],[340,3]
]}
]
});
scatterChart.setTitle({
text: '<span class="chart_title">Response Time against Global Throughput</span>',
useHTML: true
});
});
</script>
</div>
</body>
</html>