-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreq_lock-dce7c.html
912 lines (879 loc) · 94.4 KB
/
req_lock-dce7c.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
<!DOCTYPE html>
<html>
<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 type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/gatling.js"></script>
<script type="text/javascript" src="js/moment.min.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/all_sessions.js"></script>
<script type="text/javascript" src="js/stats.js"></script>
<script type="text/javascript" src="js/highstock.js"></script>
<script type="text/javascript" src="js/highcharts-more.js"></script>
<script type="text/javascript" src="js/theme.js"></script>
<script type="text/javascript" src="js/unpack.js"></script>
<title>Gatling Stats - lock</title>
</head>
<body>
<div class="frise"></div>
<div class="container details">
<div class="head">
<a href="http://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo.png"/></a>
</div>
<div class="main">
<div class="cadre">
<div class="onglet">
<img src="style/cible.png" />
<p><span>burstsimulation</span></p>
</div>
<div class="content">
<div class="sous-menu">
<div class="item "><a href="index.html">GLOBAL</a></div>
<div class="item ouvert"><a id="details_link" href="#">DETAILS</a></div>
<script type="text/javascript">
var timestamp = 1528882574431;
var runStartHumanDate = moment(timestamp).format("YYYY-MM-DD HH:mm:ss Z");
document.writeln("<p class='sim_desc' title='"+ runStartHumanDate +", duration : 3600 seconds' data-content=''>");
document.writeln("<b>" + runStartHumanDate + ", duration : 3600 seconds </b>");
document.writeln("</p>");
</script>
</div>
<div class="content-in">
<h1><span>> </span>lock</h1>
<div class="article">
<div class="infos">
<div class="infos-in">
<div class="infos-title">STATISTICS</div>
<div class="repli"></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"></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 req/s</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">Std 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 class="schema demi">
<div id="container_indicators" class="demi"></div>
</div>
<div class="statistics extensible-geant collapsed">
<div class="title">
<div class="title_collapsed" style="cursor: auto;">ERRORS</div>
</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">status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 400<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total">51</td>
<td class="value error-col-3 total">100 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="container_distrib" class="geant"></div>
</div>
<div class="schema geant">
<div id="container" class="geant"></div>
</div>
<div class="schema geant">
<a name="requests"></a>
<div id="container_requests" class="geant"></div>
</div>
<div class="schema geant">
<a name="responses"></a>
<div id="container_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 class="nav">
<ul></ul>
</div>
</div>
<div class="foot">
<a href="http://gatling.io" title="Gatling Home Page"><img alt="Gatling" src="style/logo-gatling.jpg"/></a>
</div>
<script type="text/javascript">
var pageStats = stats.contents['req_lock-dce7c'].stats;
$(document).ready(function() {
$('.sim_desc').popover({trigger:'hover', placement:'bottom'});
setDetailsLinkUrl();
setDetailsMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var indicatorsChart = new Highcharts.Chart({
chart: {
renderTo: 'container_indicators',
marginRight: 150
},
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.name,
pageStats.group2.name,
pageStats.group3.name,
pageStats.group4.name
]
},
yAxis: {
title: { text: 'Number of Requests' }
},
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',
color: '#A0B228',
data: [pageStats.group1.count,0,0,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FFDD00',
data: [0,pageStats.group2.count,0,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF9D00',
data: [0,0,pageStats.group3.count,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF0000',
data: [0,0,0,pageStats.group4.count],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#A0B228'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FF9D00'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#FF0000'
}
],
center: [470, 85],
size: 100,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
indicatorsChart.setTitle({
text: '<span class="chart_title">Indicators</span>',
useHTML: true
});
$('#container_errors').sortable('#container_errors');
var responseTimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'container_distrib',
type: 'column'
},
credits: {
enabled: false
},
legend: {
enabled: true,
floating: true,
y: -285,
borderWidth: 0,
itemStyle: {
fontWeight: "normal"
}
},
title: {
text: 'A title to let highcharts reserve the place for the title set later'
},
xAxis: {
categories: ['57', '82', '107', '132', '157', '182', '207', '232', '257', '282', '306', '331', '356', '381', '406', '431', '456', '481', '506', '531', '555', '580', '605', '630', '655', '680', '705', '730', '755', '780', '804', '829', '854', '879', '904', '929', '954', '979', '1004', '1029', '1053', '1078', '1103', '1128', '1153', '1178', '1203', '1228', '1253', '1278', '1302', '1327', '1352', '1377', '1402', '1427', '1452', '1477', '1502', '1527', '1551', '1576', '1601', '1626', '1651', '1676', '1701', '1726', '1751', '1776', '1800', '1825', '1850', '1875', '1900', '1925', '1950', '1975', '2000', '2025', '2049', '2074', '2099', '2124', '2149', '2174', '2199', '2224', '2249', '2274', '2298', '2323', '2348', '2373', '2398', '2423', '2448', '2473', '2498', '2523'],
tickInterval: 20
},
yAxis: {
min: 0,
title: {
text: 'Percentage of Requests'
}
},
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: '#4572A7',
name: 'OK',
data: [
16.12,31.69,20.19,8.55,3.36,1.12,0.7,0.84,0.56,0.56,0.14,0.56,0.28,0.0,0.0,0.14,0.0,0.0,0.0,0.14,0.28,0.14,0.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.28,0.14,0.28,0.0,0.7,0.7,0.56,0.56,0.28,0.98,0.28,0.14,0.0,0.56,0.14,0.14,0.28,0.28,0.0,0.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.0,0.0,0.14
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF0000',
name: 'KO',
data: [
0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28,0.56,0.14,0.28,0.7,0.7,0.84,0.42,0.84,0.14,0.14,0.28,0.56,0.14,0.14,0.14,0.14,0.14,0.28,0.0,0.0,0.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responseTimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responseTimePercentiles = unpack([[1528882576,null],[1528882580,null],[1528882583,null],[1528882587,null],[1528882591,null],[1528882594,null],[1528882598,null],[1528882601,null],[1528882605,null],[1528882609,null],[1528882612,null],[1528882616,null],[1528882619,null],[1528882623,null],[1528882627,null],[1528882630,null],[1528882634,null],[1528882637,null],[1528882641,null],[1528882645,null],[1528882648,null],[1528882652,null],[1528882655,null],[1528882659,null],[1528882663,null],[1528882666,null],[1528882670,null],[1528882673,null],[1528882677,null],[1528882681,null],[1528882684,null],[1528882688,null],[1528882691,null],[1528882695,null],[1528882699,null],[1528882702,null],[1528882706,null],[1528882709,null],[1528882713,null],[1528882717,null],[1528882720,null],[1528882724,null],[1528882727,null],[1528882731,null],[1528882735,null],[1528882738,null],[1528882742,null],[1528882745,null],[1528882749,null],[1528882753,null],[1528882756,null],[1528882760,null],[1528882763,null],[1528882767,null],[1528882771,null],[1528882774,null],[1528882778,null],[1528882781,null],[1528882785,null],[1528882789,null],[1528882792,null],[1528882796,null],[1528882800,null],[1528882803,null],[1528882807,null],[1528882810,null],[1528882814,null],[1528882818,null],[1528882821,null],[1528882825,null],[1528882828,null],[1528882832,null],[1528882836,null],[1528882839,null],[1528882843,null],[1528882846,null],[1528882850,null],[1528882854,null],[1528882857,null],[1528882861,null],[1528882864,null],[1528882868,null],[1528882872,null],[1528882875,null],[1528882879,null],[1528882882,null],[1528882886,null],[1528882890,null],[1528882893,null],[1528882897,null],[1528882900,null],[1528882904,null],[1528882908,null],[1528882911,null],[1528882915,null],[1528882918,null],[1528882922,null],[1528882926,null],[1528882929,null],[1528882933,null],[1528882936,null],[1528882940,null],[1528882944,null],[1528882947,null],[1528882951,null],[1528882954,null],[1528882958,null],[1528882962,null],[1528882965,null],[1528882969,null],[1528882972,null],[1528882976,null],[1528882980,null],[1528882983,null],[1528882987,null],[1528882990,null],[1528882994,null],[1528882998,null],[1528883001,null],[1528883005,null],[1528883008,null],[1528883012,null],[1528883016,null],[1528883019,null],[1528883023,null],[1528883026,null],[1528883030,null],[1528883034,null],[1528883037,null],[1528883041,null],[1528883044,null],[1528883048,null],[1528883052,null],[1528883055,null],[1528883059,null],[1528883062,null],[1528883066,null],[1528883070,null],[1528883073,null],[1528883077,null],[1528883080,null],[1528883084,null],[1528883088,null],[1528883091,null],[1528883095,null],[1528883098,null],[1528883102,null],[1528883106,null],[1528883109,null],[1528883113,null],[1528883116,null],[1528883120,null],[1528883124,null],[1528883127,null],[1528883131,null],[1528883134,null],[1528883138,null],[1528883142,null],[1528883145,null],[1528883149,null],[1528883152,null],[1528883156,null],[1528883160,null],[1528883163,null],[1528883167,null],[1528883170,null],[1528883174,null],[1528883178,null],[1528883181,null],[1528883185,null],[1528883188,null],[1528883192,null],[1528883196,null],[1528883199,null],[1528883203,null],[1528883206,null],[1528883210,null],[1528883214,null],[1528883217,null],[1528883221,null],[1528883224,null],[1528883228,null],[1528883232,null],[1528883235,null],[1528883239,null],[1528883242,null],[1528883246,null],[1528883250,null],[1528883253,null],[1528883257,null],[1528883260,null],[1528883264,null],[1528883268,null],[1528883271,null],[1528883275,null],[1528883278,null],[1528883282,null],[1528883286,null],[1528883289,null],[1528883293,null],[1528883296,null],[1528883300,null],[1528883304,null],[1528883307,null],[1528883311,null],[1528883314,null],[1528883318,null],[1528883322,null],[1528883325,null],[1528883329,null],[1528883332,null],[1528883336,null],[1528883340,null],[1528883343,null],[1528883347,null],[1528883350,null],[1528883354,null],[1528883358,null],[1528883361,null],[1528883365,null],[1528883368,null],[1528883372,null],[1528883376,null],[1528883379,null],[1528883383,null],[1528883386,null],[1528883390,null],[1528883394,null],[1528883397,null],[1528883401,null],[1528883404,null],[1528883408,null],[1528883412,null],[1528883415,null],[1528883419,null],[1528883422,null],[1528883426,null],[1528883430,null],[1528883433,null],[1528883437,null],[1528883440,null],[1528883444,null],[1528883448,null],[1528883451,null],[1528883455,null],[1528883458,null],[1528883462,null],[1528883466,null],[1528883469,null],[1528883473,null],[1528883476,null],[1528883480,null],[1528883484,null],[1528883487,null],[1528883491,null],[1528883494,null],[1528883498,null],[1528883502,null],[1528883505,null],[1528883509,null],[1528883513,null],[1528883516,null],[1528883520,null],[1528883523,null],[1528883527,null],[1528883531,null],[1528883534,null],[1528883538,null],[1528883541,null],[1528883545,null],[1528883549,null],[1528883552,null],[1528883556,null],[1528883559,null],[1528883563,null],[1528883567,null],[1528883570,null],[1528883574,null],[1528883577,null],[1528883581,null],[1528883585,null],[1528883588,null],[1528883592,null],[1528883595,null],[1528883599,null],[1528883603,null],[1528883606,null],[1528883610,null],[1528883613,null],[1528883617,null],[1528883621,null],[1528883624,null],[1528883628,null],[1528883631,null],[1528883635,null],[1528883639,null],[1528883642,null],[1528883646,null],[1528883649,null],[1528883653,null],[1528883657,null],[1528883660,null],[1528883664,null],[1528883667,null],[1528883671,null],[1528883675,null],[1528883678,null],[1528883682,null],[1528883685,null],[1528883689,null],[1528883693,null],[1528883696,null],[1528883700,null],[1528883703,null],[1528883707,null],[1528883711,null],[1528883714,null],[1528883718,null],[1528883721,null],[1528883725,null],[1528883729,null],[1528883732,null],[1528883736,null],[1528883739,null],[1528883743,null],[1528883747,null],[1528883750,null],[1528883754,null],[1528883757,null],[1528883761,null],[1528883765,null],[1528883768,null],[1528883772,null],[1528883775,null],[1528883779,null],[1528883783,null],[1528883786,null],[1528883790,null],[1528883793,null],[1528883797,null],[1528883801,null],[1528883804,null],[1528883808,null],[1528883811,null],[1528883815,null],[1528883819,null],[1528883822,null],[1528883826,null],[1528883829,null],[1528883833,null],[1528883837,null],[1528883840,null],[1528883844,null],[1528883847,null],[1528883851,null],[1528883855,null],[1528883858,null],[1528883862,null],[1528883865,null],[1528883869,null],[1528883873,null],[1528883876,null],[1528883880,null],[1528883883,null],[1528883887,null],[1528883891,null],[1528883894,null],[1528883898,null],[1528883901,null],[1528883905,null],[1528883909,null],[1528883912,null],[1528883916,null],[1528883919,null],[1528883923,null],[1528883927,null],[1528883930,null],[1528883934,null],[1528883937,null],[1528883941,null],[1528883945,null],[1528883948,null],[1528883952,null],[1528883955,null],[1528883959,null],[1528883963,null],[1528883966,null],[1528883970,null],[1528883973,null],[1528883977,null],[1528883981,null],[1528883984,null],[1528883988,null],[1528883991,null],[1528883995,null],[1528883999,null],[1528884002,null],[1528884006,null],[1528884009,null],[1528884013,null],[1528884017,null],[1528884020,null],[1528884024,null],[1528884027,null],[1528884031,null],[1528884035,null],[1528884038,null],[1528884042,null],[1528884045,null],[1528884049,null],[1528884053,null],[1528884056,null],[1528884060,null],[1528884063,null],[1528884067,null],[1528884071,null],[1528884074,null],[1528884078,null],[1528884081,null],[1528884085,null],[1528884089,null],[1528884092,null],[1528884096,null],[1528884099,null],[1528884103,null],[1528884107,null],[1528884110,null],[1528884114,null],[1528884117,null],[1528884121,null],[1528884125,null],[1528884128,null],[1528884132,null],[1528884135,null],[1528884139,null],[1528884143,null],[1528884146,null],[1528884150,null],[1528884153,null],[1528884157,null],[1528884161,null],[1528884164,null],[1528884168,null],[1528884171,null],[1528884175,null],[1528884179,null],[1528884182,null],[1528884186,null],[1528884189,null],[1528884193,null],[1528884197,null],[1528884200,null],[1528884204,null],[1528884207,null],[1528884211,null],[1528884215,null],[1528884218,null],[1528884222,null],[1528884225,null],[1528884229,null],[1528884233,null],[1528884236,null],[1528884240,null],[1528884244,null],[1528884247,null],[1528884251,null],[1528884254,null],[1528884258,null],[1528884262,null],[1528884265,null],[1528884269,null],[1528884272,null],[1528884276,null],[1528884280,null],[1528884283,null],[1528884287,null],[1528884290,null],[1528884294,null],[1528884298,null],[1528884301,null],[1528884305,null],[1528884308,null],[1528884312,null],[1528884316,null],[1528884319,null],[1528884323,null],[1528884326,null],[1528884330,null],[1528884334,null],[1528884337,null],[1528884341,null],[1528884344,null],[1528884348,null],[1528884352,null],[1528884355,null],[1528884359,null],[1528884362,null],[1528884366,null],[1528884370,null],[1528884373,null],[1528884377,null],[1528884380,null],[1528884384,null],[1528884388,null],[1528884391,null],[1528884395,null],[1528884398,null],[1528884402,null],[1528884406,null],[1528884409,null],[1528884413,null],[1528884416,null],[1528884420,null],[1528884424,null],[1528884427,null],[1528884431,null],[1528884434,null],[1528884438,null],[1528884442,null],[1528884445,null],[1528884449,null],[1528884452,null],[1528884456,null],[1528884460,null],[1528884463,null],[1528884467,null],[1528884470,null],[1528884474,null],[1528884478,null],[1528884481,null],[1528884485,null],[1528884488,null],[1528884492,null],[1528884496,null],[1528884499,null],[1528884503,null],[1528884506,null],[1528884510,null],[1528884514,null],[1528884517,null],[1528884521,null],[1528884524,null],[1528884528,null],[1528884532,null],[1528884535,null],[1528884539,null],[1528884542,null],[1528884546,null],[1528884550,null],[1528884553,null],[1528884557,null],[1528884560,null],[1528884564,null],[1528884568,null],[1528884571,null],[1528884575,null],[1528884578,null],[1528884582,null],[1528884586,null],[1528884589,null],[1528884593,null],[1528884596,null],[1528884600,null],[1528884604,null],[1528884607,null],[1528884611,null],[1528884614,null],[1528884618,null],[1528884622,null],[1528884625,null],[1528884629,null],[1528884632,null],[1528884636,null],[1528884640,null],[1528884643,null],[1528884647,null],[1528884650,null],[1528884654,null],[1528884658,null],[1528884661,null],[1528884665,null],[1528884668,null],[1528884672,null],[1528884676,null],[1528884679,null],[1528884683,null],[1528884686,null],[1528884690,null],[1528884694,null],[1528884697,null],[1528884701,null],[1528884704,null],[1528884708,null],[1528884712,null],[1528884715,null],[1528884719,null],[1528884722,null],[1528884726,null],[1528884730,null],[1528884733,null],[1528884737,null],[1528884740,null],[1528884744,null],[1528884748,null],[1528884751,null],[1528884755,null],[1528884758,null],[1528884762,null],[1528884766,null],[1528884769,null],[1528884773,null],[1528884776,null],[1528884780,null],[1528884784,null],[1528884787,null],[1528884791,null],[1528884794,null],[1528884798,null],[1528884802,null],[1528884805,null],[1528884809,null],[1528884812,null],[1528884816,null],[1528884820,null],[1528884823,null],[1528884827,null],[1528884830,null],[1528884834,null],[1528884838,null],[1528884841,null],[1528884845,null],[1528884848,null],[1528884852,null],[1528884856,null],[1528884859,null],[1528884863,null],[1528884866,null],[1528884870,null],[1528884874,null],[1528884877,null],[1528884881,null],[1528884884,null],[1528884888,null],[1528884892,null],[1528884895,null],[1528884899,null],[1528884902,null],[1528884906,null],[1528884910,null],[1528884913,null],[1528884917,null],[1528884920,null],[1528884924,null],[1528884928,null],[1528884931,null],[1528884935,null],[1528884938,null],[1528884942,null],[1528884946,null],[1528884949,null],[1528884953,null],[1528884957,null],[1528884960,null],[1528884964,null],[1528884967,null],[1528884971,null],[1528884975,null],[1528884978,null],[1528884982,null],[1528884985,null],[1528884989,null],[1528884993,null],[1528884996,null],[1528885000,null],[1528885003,null],[1528885007,null],[1528885011,null],[1528885014,null],[1528885018,null],[1528885021,null],[1528885025,null],[1528885029,null],[1528885032,null],[1528885036,null],[1528885039,null],[1528885043,null],[1528885047,null],[1528885050,null],[1528885054,null],[1528885057,null],[1528885061,null],[1528885065,null],[1528885068,null],[1528885072,null],[1528885075,null],[1528885079,null],[1528885083,null],[1528885086,null],[1528885090,null],[1528885093,null],[1528885097,null],[1528885101,null],[1528885104,null],[1528885108,null],[1528885111,null],[1528885115,null],[1528885119,null],[1528885122,null],[1528885126,null],[1528885129,null],[1528885133,null],[1528885137,null],[1528885140,null],[1528885144,null],[1528885147,null],[1528885151,null],[1528885155,null],[1528885158,null],[1528885162,null],[1528885165,null],[1528885169,null],[1528885173,null],[1528885176,null],[1528885180,null],[1528885183,null],[1528885187,null],[1528885191,null],[1528885194,null],[1528885198,null],[1528885201,null],[1528885205,null],[1528885209,null],[1528885212,null],[1528885216,null],[1528885219,null],[1528885223,null],[1528885227,null],[1528885230,null],[1528885234,null],[1528885237,null],[1528885241,null],[1528885245,null],[1528885248,null],[1528885252,null],[1528885255,null],[1528885259,null],[1528885263,null],[1528885266,null],[1528885270,null],[1528885273,null],[1528885277,null],[1528885281,null],[1528885284,null],[1528885288,null],[1528885291,null],[1528885295,null],[1528885299,null],[1528885302,null],[1528885306,null],[1528885309,null],[1528885313,null],[1528885317,null],[1528885320,null],[1528885324,null],[1528885327,null],[1528885331,null],[1528885335,null],[1528885338,null],[1528885342,null],[1528885345,null],[1528885349,null],[1528885353,null],[1528885356,null],[1528885360,null],[1528885363,null],[1528885367,null],[1528885371,null],[1528885374,null],[1528885378,null],[1528885381,null],[1528885385,null],[1528885389,null],[1528885392,null],[1528885396,null],[1528885399,null],[1528885403,null],[1528885407,null],[1528885410,null],[1528885414,null],[1528885417,null],[1528885421,null],[1528885425,null],[1528885428,null],[1528885432,[68,201,335,469,496,522,549,576,597,603]],[1528885435,[566,691,817,943,968,993,1018,1043,1063,1069]],[1528885439,[548,548,548,548,548,548,548,548,548,548]],[1528885443,null],[1528885446,null],[1528885450,null],[1528885453,null],[1528885457,null],[1528885461,null],[1528885464,null],[1528885468,null],[1528885471,null],[1528885475,null],[1528885479,null],[1528885482,null],[1528885486,null],[1528885489,[66,131,196,1322,1547,1773,1998,2223,2403,2449]],[1528885493,[45,59,74,82,83,85,86,88,89,90]],[1528885497,[55,91,125,397,548,698,849,999,1119,1150]],[1528885500,[68,75,80,398,587,777,966,1155,1307,1345]],[1528885504,[58,90,123,156,162,169,175,182,187,189]],[1528885507,[95,95,97,353,505,657,810,962,1084,1115]],[1528885511,[66,68,71,73,74,74,75,75,75,76]],[1528885515,[70,76,82,88,90,91,92,93,94,95]],[1528885518,[100,114,610,1141,1165,1189,1213,1236,1256,1261]],[1528885522,[78,111,144,157,159,162,164,167,169,170]],[1528885525,[73,84,96,653,765,876,988,1099,1188,1211]],[1528885529,[64,68,72,93,97,102,106,110,114,115]],[1528885533,[69,69,78,90,93,96,99,102,104,105]],[1528885536,[98,98,98,98,98,98,98,98,98,98]],[1528885540,[59,63,68,70,71,71,72,72,72,73]],[1528885543,[87,94,102,109,110,111,113,114,115,116]],[1528885547,[92,103,114,628,730,833,936,1039,1121,1142]],[1528885551,[84,103,123,143,147,151,155,159,162,163]],[1528885554,[71,80,89,96,98,99,101,102,103,104]],[1528885558,[57,82,91,193,391,589,787,985,1144,1184]],[1528885561,[71,83,96,134,142,149,157,165,171,173]],[1528885565,[72,81,91,100,102,104,106,108,109,110]],[1528885569,[90,105,136,471,657,842,1027,1212,1360,1398]],[1528885572,[73,73,73,73,73,73,73,73,73,73]],[1528885576,[62,63,73,87,90,92,95,98,100,101]],[1528885579,[86,86,86,105,108,112,116,120,123,124]],[1528885583,[75,78,81,84,85,86,86,87,87,88]],[1528885587,[48,48,49,69,73,77,81,85,89,90]],[1528885590,[63,68,73,83,85,87,89,91,93,94]],[1528885594,[70,76,82,88,89,90,91,92,93,94]],[1528885597,[58,67,76,87,90,94,97,100,103,104]],[1528885601,[54,75,97,119,123,127,132,136,140,141]],[1528885605,[77,84,92,93,93,93,93,93,93,94]],[1528885608,[58,64,71,125,136,147,158,169,177,180]],[1528885612,[81,91,101,109,110,112,113,115,116,117]],[1528885615,[53,65,90,97,103,109,116,122,127,129]],[1528885619,[53,53,53,53,53,53,53,53,53,53]],[1528885623,[93,108,115,420,602,784,967,1149,1295,1332]],[1528885626,[63,77,92,106,109,112,115,118,120,121]],[1528885630,[65,78,85,89,89,90,90,91,91,92]],[1528885633,[71,81,91,102,104,107,109,111,113,114]],[1528885637,[52,73,94,99,100,101,102,103,103,104]],[1528885641,[85,99,113,120,122,123,125,126,127,128]],[1528885644,[89,97,105,612,713,814,916,1017,1098,1119]],[1528885648,[72,76,80,84,85,86,87,88,88,89]],[1528885651,[59,71,83,95,98,100,103,105,107,108]],[1528885655,[76,86,103,120,123,126,129,132,134,135]],[1528885659,[63,78,95,360,512,663,815,966,1087,1118]],[1528885662,[72,78,84,112,117,123,128,134,138,140]],[1528885666,[82,102,119,363,503,643,783,923,1035,1063]],[1528885669,[74,96,118,125,127,128,130,131,132,133]],[1528885673,[75,84,94,103,105,107,109,111,112,113]],[1528885677,[60,72,85,97,99,101,104,106,108,109]],[1528885680,[49,80,111,685,800,915,1030,1145,1237,1260]],[1528885684,[68,76,92,108,109,110,111,112,113,114]],[1528885688,[72,78,85,91,92,94,95,96,97,98]],[1528885691,[70,93,122,128,132,136,141,145,149,150]],[1528885695,[80,81,82,84,84,84,85,85,85,86]],[1528885698,[81,81,81,81,81,81,81,81,81,82]],[1528885702,[77,80,83,86,86,87,87,88,88,89]],[1528885706,[78,85,92,115,120,124,129,134,138,139]],[1528885709,[70,72,75,83,85,86,88,90,91,92]],[1528885713,[55,58,62,65,66,66,67,68,68,69]],[1528885716,[46,299,552,805,855,906,956,1007,1047,1058]],[1528885720,[60,78,86,116,132,148,165,181,194,198]],[1528885724,[52,86,100,110,115,119,124,128,132,133]],[1528885727,[60,91,123,134,136,138,140,142,144,145]],[1528885731,[72,78,82,86,87,88,89,90,91,92]],[1528885734,[53,53,58,68,70,73,75,78,80,81]],[1528885738,[65,82,100,101,101,102,102,102,102,103]],[1528885742,[45,70,86,102,108,113,118,123,127,129]],[1528885745,[59,63,67,71,71,72,73,74,74,75]],[1528885749,[51,59,68,72,72,73,74,75,75,76]],[1528885752,[79,83,87,115,121,126,132,138,142,144]],[1528885756,[69,87,107,380,536,692,848,1004,1128,1160]],[1528885760,[65,67,70,96,101,107,112,117,121,123]],[1528885763,[65,83,94,396,575,753,932,1110,1253,1289]],[1528885767,[52,83,114,125,127,129,131,133,135,136]],[1528885770,[59,63,68,72,73,74,75,76,76,77]],[1528885774,[49,67,81,92,94,96,97,99,100,101]],[1528885778,[70,77,96,119,123,126,130,134,137,138]],[1528885781,[80,93,110,112,276,441,605,770,902,935]],[1528885785,[71,74,79,89,94,98,103,107,111,112]],[1528885788,[60,64,69,77,78,80,81,83,84,85]],[1528885792,[54,60,67,83,86,90,93,96,99,100]],[1528885796,[52,61,77,92,93,95,97,99,100,101]],[1528885799,[59,71,108,128,292,457,621,786,918,951]],[1528885803,[88,97,122,741,1100,1459,1817,2176,2463,2535]],[1528885806,[143,262,277,536,707,879,1051,1223,1360,1395]],[1528885810,[99,107,116,868,1019,1169,1320,1470,1590,1621]],[1528885814,[116,127,154,187,193,199,205,211,215,217]],[1528885817,[87,96,101,104,105,106,107,108,109,110]],[1528885821,[99,114,159,289,303,318,333,348,360,363]],[1528885824,[50,120,190,610,694,778,862,945,1013,1030]],[1528885828,[76,83,115,297,351,532,714,896,1041,1078]],[1528885832,[55,92,130,575,664,753,842,930,1002,1020]],[1528885835,[58,70,83,94,95,97,98,100,101,102]],[1528885839,[83,108,116,152,165,179,193,207,218,221]],[1528885842,[85,113,145,225,240,255,271,286,298,302]],[1528885846,[84,106,117,122,123,124,125,126,127,128]],[1528885850,[66,96,126,131,132,133,134,135,136,137]],[1528885853,[65,80,92,134,156,177,199,220,237,242]],[1528885857,[65,67,116,246,262,278,294,310,323,327]],[1528885860,[80,122,216,385,438,643,849,1055,1219,1261]],[1528885864,[74,156,319,453,529,647,849,1051,1212,1253]],[1528885868,[50,86,111,121,123,132,142,151,159,161]],[1528885871,[85,87,94,124,136,239,524,809,1037,1095]],[1528885875,[85,113,137,146,148,373,598,823,1003,1049]],[1528885878,[73,80,85,106,113,113,114,115,115,116]],[1528885882,[69,84,89,96,100,104,108,112,116,117]],[1528885886,[72,83,87,98,101,111,122,133,141,144]],[1528885889,[92,106,118,131,132,161,190,219,243,249]],[1528885893,[62,74,92,98,100,103,111,119,125,127]],[1528885896,[52,86,117,138,145,152,189,231,265,274]],[1528885900,[80,90,101,508,589,670,752,833,898,915]],[1528885904,[113,128,144,154,156,158,160,162,163,164]],[1528885907,[62,130,188,432,558,684,810,936,1036,1062]],[1528885911,[69,69,70,74,75,76,77,78,78,79]],[1528885914,[84,101,119,706,824,941,1059,1176,1270,1294]],[1528885918,[75,77,77,96,103,110,117,124,129,131]],[1528885922,[87,416,745,1074,1140,1206,1272,1338,1390,1404]],[1528885925,[61,66,71,89,92,96,99,103,106,107]],[1528885929,[54,79,207,583,737,890,1044,1198,1321,1352]],[1528885932,[69,81,93,628,735,841,949,1055,1141,1163]],[1528885936,[58,63,69,75,76,77,78,79,80,81]],[1528885940,[78,78,79,101,105,109,114,118,122,123]],[1528885943,[53,74,83,135,165,196,226,256,280,287]],[1528885947,[67,68,70,72,73,73,74,74,74,75]],[1528885950,[80,81,82,107,112,117,122,126,131,132]],[1528885954,[78,85,92,169,184,199,215,230,242,246]],[1528885958,[66,122,178,631,722,812,903,994,1066,1085]],[1528885961,[49,49,49,61,64,66,69,71,73,74]],[1528885965,[62,63,65,73,77,81,85,89,92,93]],[1528885968,[71,72,74,77,78,79,81,82,83,84]],[1528885972,[48,74,101,117,120,124,127,130,133,134]],[1528885976,[84,97,110,117,119,120,122,123,124,125]],[1528885979,[85,87,89,639,749,859,969,1079,1167,1189]],[1528885983,[70,71,73,529,620,712,803,894,967,986]],[1528885986,[91,93,96,99,99,100,100,101,101,102]],[1528885990,[60,70,81,102,106,111,115,119,123,124]],[1528885994,[53,69,78,84,86,87,89,90,91,92]],[1528885997,[99,99,100,104,105,106,107,108,108,109]],[1528886001,[95,95,97,104,107,111,114,117,120,121]],[1528886004,[74,76,79,581,681,781,882,982,1062,1083]],[1528886008,[67,76,86,125,133,141,149,157,163,165]],[1528886012,[101,107,114,121,122,123,125,126,127,128]],[1528886015,[50,107,165,1155,1189,1223,1257,1291,1319,1326]],[1528886019,[85,91,97,121,126,131,136,141,145,146]],[1528886022,[69,77,86,104,108,111,115,119,122,123]],[1528886026,[64,70,77,549,644,738,833,927,1003,1022]],[1528886030,[78,90,102,109,110,111,113,114,115,116]],[1528886033,[97,103,114,127,130,132,134,136,138,139]],[1528886037,[64,82,100,131,137,144,150,156,161,163]],[1528886040,[70,90,97,100,101,102,103,104,105,106]],[1528886044,[81,87,104,120,122,124,125,127,128,129]],[1528886048,[47,58,69,80,83,85,87,89,91,92]],[1528886051,[86,95,104,119,122,125,128,131,134,135]],[1528886055,[115,119,124,140,143,147,150,153,156,157]],[1528886058,[74,89,105,105,105,105,105,105,105,106]],[1528886062,[71,79,84,91,294,496,700,902,1065,1106]],[1528886066,[92,104,116,120,121,122,123,124,124,125]],[1528886069,[63,88,113,568,659,750,841,932,1005,1024]],[1528886073,[58,68,79,89,91,93,95,97,99,100]],[1528886076,[67,72,77,86,88,90,92,94,95,96]],[1528886080,[82,97,107,374,531,688,845,1002,1128,1160]],[1528886084,[86,87,88,92,92,93,94,95,95,96]],[1528886087,[51,63,82,103,107,111,115,119,123,124]],[1528886091,[79,116,153,160,162,163,165,166,167,168]],[1528886094,[54,59,64,69,70,71,72,73,74,75]],[1528886098,[58,71,78,85,88,91,94,97,100,101]],[1528886102,[104,112,121,129,131,132,134,136,137,138]],[1528886105,[76,95,114,116,116,116,117,117,117,118]],[1528886109,[72,73,75,89,92,95,98,101,103,104]],[1528886112,[61,76,84,92,94,96,99,101,103,104]],[1528886116,[58,58,58,78,82,86,90,94,98,99]],[1528886120,[61,61,61,61,61,61,61,61,61,61]],[1528886123,[69,81,94,105,106,107,109,110,111,112]],[1528886127,[77,322,568,813,862,911,960,1009,1049,1059]],[1528886130,[93,106,119,572,662,753,843,934,1006,1025]],[1528886134,[102,104,106,108,109,109,110,110,110,111]],[1528886138,[87,94,101,165,177,190,203,216,226,229]],[1528886141,[70,71,72,82,88,93,99,105,109,111]],[1528886145,[69,71,74,77,78,78,79,80,80,81]],[1528886148,[97,97,105,124,132,140,147,155,161,163]],[1528886152,[51,82,114,137,142,146,151,156,160,161]],[1528886156,[90,107,125,549,634,719,804,889,957,974]],[1528886159,[54,79,111,137,138,140,142,144,145,146]],[1528886163,[66,83,100,627,733,838,944,1049,1133,1155]],[1528886166,[64,71,79,82,83,83,84,85,85,86]],[1528886170,[54,67,81,508,594,679,765,850,918,936]],[1528886174,[67,67,67,90,103,116,130,143,154,157]]]);
var responseTimeChart = new Highcharts.StockChart({
chart: {
renderTo: 'container',
zoomType: 'x'
},
colors: ['#C4FD90', '#7FF77F', '#6FF2AD', '#60ECE5', '#51A8E7', '#4353E2', '#7335DC', '#BC28D7', '#D11C97', '#C73905', 'Orange'],
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: { baseSeries: 9 },
rangeSelector: {
rangeSelector: { align: "left" },
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
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)',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
plotOptions: {
arearange: { lineWidth: 1 },
series: {
dataGrouping: { enabled: false }
}
},
series: [
{
pointInterval: 1000,
name: 'min',
data: responseTimePercentiles[0],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 10
},
{
pointInterval: 1000,
name: '25%',
data: responseTimePercentiles[1],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 9
},
{
pointInterval: 1000,
name: '50%',
data: responseTimePercentiles[2],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 8
},
{
pointInterval: 1000,
name: '75%',
data: responseTimePercentiles[3],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 7
},
{
pointInterval: 1000,
name: '80%',
data: responseTimePercentiles[4],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 6
},
{
pointInterval: 1000,
name: '85%',
data: responseTimePercentiles[5],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 5
},
{
pointInterval: 1000,
name: '90%',
data: responseTimePercentiles[6],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 4
},
{
pointInterval: 1000,
name: '95%',
data: responseTimePercentiles[7],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 3
},
{
pointInterval: 1000,
name: '99%',
data: responseTimePercentiles[8],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 2
},
{
pointInterval: 1000,
name: 'max',
data: responseTimePercentiles[9],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 1
},
allUsersData
]
});
responseTimeChart.setTitle({
text: '<span class="chart_title chart_title_">Response Time Percentiles over Time (OK)</span>',
useHTML: true
});
var container_requests = unpack([[1528882576,[0,0, 0]],[1528882580,[0,0, 0]],[1528882583,[0,0, 0]],[1528882587,[0,0, 0]],[1528882591,[0,0, 0]],[1528882594,[0,0, 0]],[1528882598,[0,0, 0]],[1528882601,[0,0, 0]],[1528882605,[0,0, 0]],[1528882609,[0,0, 0]],[1528882612,[0,0, 0]],[1528882616,[0,0, 0]],[1528882619,[0,0, 0]],[1528882623,[0,0, 0]],[1528882627,[0,0, 0]],[1528882630,[0,0, 0]],[1528882634,[0,0, 0]],[1528882637,[0,0, 0]],[1528882641,[0,0, 0]],[1528882645,[0,0, 0]],[1528882648,[0,0, 0]],[1528882652,[0,0, 0]],[1528882655,[0,0, 0]],[1528882659,[0,0, 0]],[1528882663,[0,0, 0]],[1528882666,[0,0, 0]],[1528882670,[0,0, 0]],[1528882673,[0,0, 0]],[1528882677,[0,0, 0]],[1528882681,[0,0, 0]],[1528882684,[0,0, 0]],[1528882688,[0,0, 0]],[1528882691,[0,0, 0]],[1528882695,[0,0, 0]],[1528882699,[0,0, 0]],[1528882702,[0,0, 0]],[1528882706,[0,0, 0]],[1528882709,[0,0, 0]],[1528882713,[0,0, 0]],[1528882717,[0,0, 0]],[1528882720,[0,0, 0]],[1528882724,[0,0, 0]],[1528882727,[0,0, 0]],[1528882731,[0,0, 0]],[1528882735,[0,0, 0]],[1528882738,[0,0, 0]],[1528882742,[0,0, 0]],[1528882745,[0,0, 0]],[1528882749,[0,0, 0]],[1528882753,[0,0, 0]],[1528882756,[0,0, 0]],[1528882760,[0,0, 0]],[1528882763,[0,0, 0]],[1528882767,[0,0, 0]],[1528882771,[0,0, 0]],[1528882774,[0,0, 0]],[1528882778,[0,0, 0]],[1528882781,[0,0, 0]],[1528882785,[0,0, 0]],[1528882789,[0,0, 0]],[1528882792,[0,0, 0]],[1528882796,[0,0, 0]],[1528882800,[0,0, 0]],[1528882803,[0,0, 0]],[1528882807,[0,0, 0]],[1528882810,[0,0, 0]],[1528882814,[0,0, 0]],[1528882818,[0,0, 0]],[1528882821,[0,0, 0]],[1528882825,[0,0, 0]],[1528882828,[0,0, 0]],[1528882832,[0,0, 0]],[1528882836,[0,0, 0]],[1528882839,[0,0, 0]],[1528882843,[0,0, 0]],[1528882846,[0,0, 0]],[1528882850,[0,0, 0]],[1528882854,[0,0, 0]],[1528882857,[0,0, 0]],[1528882861,[0,0, 0]],[1528882864,[0,0, 0]],[1528882868,[0,0, 0]],[1528882872,[0,0, 0]],[1528882875,[0,0, 0]],[1528882879,[0,0, 0]],[1528882882,[0,0, 0]],[1528882886,[0,0, 0]],[1528882890,[0,0, 0]],[1528882893,[0,0, 0]],[1528882897,[0,0, 0]],[1528882900,[0,0, 0]],[1528882904,[0,0, 0]],[1528882908,[0,0, 0]],[1528882911,[0,0, 0]],[1528882915,[0,0, 0]],[1528882918,[0,0, 0]],[1528882922,[0,0, 0]],[1528882926,[0,0, 0]],[1528882929,[0,0, 0]],[1528882933,[0,0, 0]],[1528882936,[0,0, 0]],[1528882940,[0,0, 0]],[1528882944,[0,0, 0]],[1528882947,[0,0, 0]],[1528882951,[0,0, 0]],[1528882954,[0,0, 0]],[1528882958,[0,0, 0]],[1528882962,[0,0, 0]],[1528882965,[0,0, 0]],[1528882969,[0,0, 0]],[1528882972,[0,0, 0]],[1528882976,[0,0, 0]],[1528882980,[0,0, 0]],[1528882983,[0,0, 0]],[1528882987,[0,0, 0]],[1528882990,[0,0, 0]],[1528882994,[0,0, 0]],[1528882998,[0,0, 0]],[1528883001,[0,0, 0]],[1528883005,[0,0, 0]],[1528883008,[0,0, 0]],[1528883012,[0,0, 0]],[1528883016,[0,0, 0]],[1528883019,[0,0, 0]],[1528883023,[0,0, 0]],[1528883026,[0,0, 0]],[1528883030,[0,0, 0]],[1528883034,[0,0, 0]],[1528883037,[0,0, 0]],[1528883041,[0,0, 0]],[1528883044,[0,0, 0]],[1528883048,[0,0, 0]],[1528883052,[0,0, 0]],[1528883055,[0,0, 0]],[1528883059,[0,0, 0]],[1528883062,[0,0, 0]],[1528883066,[0,0, 0]],[1528883070,[0,0, 0]],[1528883073,[0,0, 0]],[1528883077,[0,0, 0]],[1528883080,[0,0, 0]],[1528883084,[0,0, 0]],[1528883088,[0,0, 0]],[1528883091,[0,0, 0]],[1528883095,[0,0, 0]],[1528883098,[0,0, 0]],[1528883102,[0,0, 0]],[1528883106,[0,0, 0]],[1528883109,[0,0, 0]],[1528883113,[0,0, 0]],[1528883116,[0,0, 0]],[1528883120,[0,0, 0]],[1528883124,[0,0, 0]],[1528883127,[0,0, 0]],[1528883131,[0,0, 0]],[1528883134,[0,0, 0]],[1528883138,[0,0, 0]],[1528883142,[0,0, 0]],[1528883145,[0,0, 0]],[1528883149,[0,0, 0]],[1528883152,[0,0, 0]],[1528883156,[0,0, 0]],[1528883160,[0,0, 0]],[1528883163,[0,0, 0]],[1528883167,[0,0, 0]],[1528883170,[0,0, 0]],[1528883174,[0,0, 0]],[1528883178,[0,0, 0]],[1528883181,[0,0, 0]],[1528883185,[0,0, 0]],[1528883188,[0,0, 0]],[1528883192,[0,0, 0]],[1528883196,[0,0, 0]],[1528883199,[0,0, 0]],[1528883203,[0,0, 0]],[1528883206,[0,0, 0]],[1528883210,[0,0, 0]],[1528883214,[0,0, 0]],[1528883217,[0,0, 0]],[1528883221,[0,0, 0]],[1528883224,[0,0, 0]],[1528883228,[0,0, 0]],[1528883232,[0,0, 0]],[1528883235,[0,0, 0]],[1528883239,[0,0, 0]],[1528883242,[0,0, 0]],[1528883246,[0,0, 0]],[1528883250,[0,0, 0]],[1528883253,[0,0, 0]],[1528883257,[0,0, 0]],[1528883260,[0,0, 0]],[1528883264,[0,0, 0]],[1528883268,[0,0, 0]],[1528883271,[0,0, 0]],[1528883275,[0,0, 0]],[1528883278,[0,0, 0]],[1528883282,[0,0, 0]],[1528883286,[0,0, 0]],[1528883289,[0,0, 0]],[1528883293,[0,0, 0]],[1528883296,[0,0, 0]],[1528883300,[0,0, 0]],[1528883304,[0,0, 0]],[1528883307,[0,0, 0]],[1528883311,[0,0, 0]],[1528883314,[0,0, 0]],[1528883318,[0,0, 0]],[1528883322,[0,0, 0]],[1528883325,[0,0, 0]],[1528883329,[0,0, 0]],[1528883332,[0,0, 0]],[1528883336,[0,0, 0]],[1528883340,[0,0, 0]],[1528883343,[0,0, 0]],[1528883347,[0,0, 0]],[1528883350,[0,0, 0]],[1528883354,[0,0, 0]],[1528883358,[0,0, 0]],[1528883361,[0,0, 0]],[1528883365,[0,0, 0]],[1528883368,[0,0, 0]],[1528883372,[0,0, 0]],[1528883376,[0,0, 0]],[1528883379,[0,0, 0]],[1528883383,[0,0, 0]],[1528883386,[0,0, 0]],[1528883390,[0,0, 0]],[1528883394,[0,0, 0]],[1528883397,[0,0, 0]],[1528883401,[0,0, 0]],[1528883404,[0,0, 0]],[1528883408,[0,0, 0]],[1528883412,[0,0, 0]],[1528883415,[0,0, 0]],[1528883419,[0,0, 0]],[1528883422,[0,0, 0]],[1528883426,[0,0, 0]],[1528883430,[0,0, 0]],[1528883433,[0,0, 0]],[1528883437,[0,0, 0]],[1528883440,[0,0, 0]],[1528883444,[0,0, 0]],[1528883448,[0,0, 0]],[1528883451,[0,0, 0]],[1528883455,[0,0, 0]],[1528883458,[0,0, 0]],[1528883462,[0,0, 0]],[1528883466,[0,0, 0]],[1528883469,[0,0, 0]],[1528883473,[0,0, 0]],[1528883476,[0,0, 0]],[1528883480,[0,0, 0]],[1528883484,[0,0, 0]],[1528883487,[0,0, 0]],[1528883491,[0,0, 0]],[1528883494,[0,0, 0]],[1528883498,[0,0, 0]],[1528883502,[0,0, 0]],[1528883505,[0,0, 0]],[1528883509,[0,0, 0]],[1528883513,[0,0, 0]],[1528883516,[0,0, 0]],[1528883520,[0,0, 0]],[1528883523,[0,0, 0]],[1528883527,[0,0, 0]],[1528883531,[0,0, 0]],[1528883534,[0,0, 0]],[1528883538,[0,0, 0]],[1528883541,[0,0, 0]],[1528883545,[0,0, 0]],[1528883549,[0,0, 0]],[1528883552,[0,0, 0]],[1528883556,[0,0, 0]],[1528883559,[0,0, 0]],[1528883563,[0,0, 0]],[1528883567,[0,0, 0]],[1528883570,[0,0, 0]],[1528883574,[0,0, 0]],[1528883577,[0,0, 0]],[1528883581,[0,0, 0]],[1528883585,[0,0, 0]],[1528883588,[0,0, 0]],[1528883592,[0,0, 0]],[1528883595,[0,0, 0]],[1528883599,[0,0, 0]],[1528883603,[0,0, 0]],[1528883606,[0,0, 0]],[1528883610,[0,0, 0]],[1528883613,[0,0, 0]],[1528883617,[0,0, 0]],[1528883621,[0,0, 0]],[1528883624,[0,0, 0]],[1528883628,[0,0, 0]],[1528883631,[0,0, 0]],[1528883635,[0,0, 0]],[1528883639,[0,0, 0]],[1528883642,[0,0, 0]],[1528883646,[0,0, 0]],[1528883649,[0,0, 0]],[1528883653,[0,0, 0]],[1528883657,[0,0, 0]],[1528883660,[0,0, 0]],[1528883664,[0,0, 0]],[1528883667,[0,0, 0]],[1528883671,[0,0, 0]],[1528883675,[0,0, 0]],[1528883678,[0,0, 0]],[1528883682,[0,0, 0]],[1528883685,[0,0, 0]],[1528883689,[0,0, 0]],[1528883693,[0,0, 0]],[1528883696,[0,0, 0]],[1528883700,[0,0, 0]],[1528883703,[0,0, 0]],[1528883707,[0,0, 0]],[1528883711,[0,0, 0]],[1528883714,[0,0, 0]],[1528883718,[0,0, 0]],[1528883721,[0,0, 0]],[1528883725,[0,0, 0]],[1528883729,[0,0, 0]],[1528883732,[0,0, 0]],[1528883736,[0,0, 0]],[1528883739,[0,0, 0]],[1528883743,[0,0, 0]],[1528883747,[0,0, 0]],[1528883750,[0,0, 0]],[1528883754,[0,0, 0]],[1528883757,[0,0, 0]],[1528883761,[0,0, 0]],[1528883765,[0,0, 0]],[1528883768,[0,0, 0]],[1528883772,[0,0, 0]],[1528883775,[0,0, 0]],[1528883779,[0,0, 0]],[1528883783,[0,0, 0]],[1528883786,[0,0, 0]],[1528883790,[0,0, 0]],[1528883793,[0,0, 0]],[1528883797,[0,0, 0]],[1528883801,[0,0, 0]],[1528883804,[0,0, 0]],[1528883808,[0,0, 0]],[1528883811,[0,0, 0]],[1528883815,[0,0, 0]],[1528883819,[0,0, 0]],[1528883822,[0,0, 0]],[1528883826,[0,0, 0]],[1528883829,[0,0, 0]],[1528883833,[0,0, 0]],[1528883837,[0,0, 0]],[1528883840,[0,0, 0]],[1528883844,[0,0, 0]],[1528883847,[0,0, 0]],[1528883851,[0,0, 0]],[1528883855,[0,0, 0]],[1528883858,[0,0, 0]],[1528883862,[0,0, 0]],[1528883865,[0,0, 0]],[1528883869,[0,0, 0]],[1528883873,[0,0, 0]],[1528883876,[0,0, 0]],[1528883880,[0,0, 0]],[1528883883,[0,0, 0]],[1528883887,[0,0, 0]],[1528883891,[0,0, 0]],[1528883894,[0,0, 0]],[1528883898,[0,0, 0]],[1528883901,[0,0, 0]],[1528883905,[0,0, 0]],[1528883909,[0,0, 0]],[1528883912,[0,0, 0]],[1528883916,[0,0, 0]],[1528883919,[0,0, 0]],[1528883923,[0,0, 0]],[1528883927,[0,0, 0]],[1528883930,[0,0, 0]],[1528883934,[0,0, 0]],[1528883937,[0,0, 0]],[1528883941,[0,0, 0]],[1528883945,[0,0, 0]],[1528883948,[0,0, 0]],[1528883952,[0,0, 0]],[1528883955,[0,0, 0]],[1528883959,[0,0, 0]],[1528883963,[0,0, 0]],[1528883966,[0,0, 0]],[1528883970,[0,0, 0]],[1528883973,[0,0, 0]],[1528883977,[0,0, 0]],[1528883981,[0,0, 0]],[1528883984,[0,0, 0]],[1528883988,[0,0, 0]],[1528883991,[0,0, 0]],[1528883995,[0,0, 0]],[1528883999,[0,0, 0]],[1528884002,[0,0, 0]],[1528884006,[0,0, 0]],[1528884009,[0,0, 0]],[1528884013,[0,0, 0]],[1528884017,[0,0, 0]],[1528884020,[0,0, 0]],[1528884024,[0,0, 0]],[1528884027,[0,0, 0]],[1528884031,[0,0, 0]],[1528884035,[0,0, 0]],[1528884038,[0,0, 0]],[1528884042,[0,0, 0]],[1528884045,[0,0, 0]],[1528884049,[0,0, 0]],[1528884053,[0,0, 0]],[1528884056,[0,0, 0]],[1528884060,[0,0, 0]],[1528884063,[0,0, 0]],[1528884067,[0,0, 0]],[1528884071,[0,0, 0]],[1528884074,[0,0, 0]],[1528884078,[0,0, 0]],[1528884081,[0,0, 0]],[1528884085,[0,0, 0]],[1528884089,[0,0, 0]],[1528884092,[0,0, 0]],[1528884096,[0,0, 0]],[1528884099,[0,0, 0]],[1528884103,[0,0, 0]],[1528884107,[0,0, 0]],[1528884110,[0,0, 0]],[1528884114,[0,0, 0]],[1528884117,[0,0, 0]],[1528884121,[0,0, 0]],[1528884125,[0,0, 0]],[1528884128,[0,0, 0]],[1528884132,[0,0, 0]],[1528884135,[0,0, 0]],[1528884139,[0,0, 0]],[1528884143,[0,0, 0]],[1528884146,[0,0, 0]],[1528884150,[0,0, 0]],[1528884153,[0,0, 0]],[1528884157,[0,0, 0]],[1528884161,[0,0, 0]],[1528884164,[0,0, 0]],[1528884168,[0,0, 0]],[1528884171,[0,0, 0]],[1528884175,[0,0, 0]],[1528884179,[0,0, 0]],[1528884182,[0,0, 0]],[1528884186,[0,0, 0]],[1528884189,[0,0, 0]],[1528884193,[0,0, 0]],[1528884197,[0,0, 0]],[1528884200,[0,0, 0]],[1528884204,[0,0, 0]],[1528884207,[0,0, 0]],[1528884211,[0,0, 0]],[1528884215,[0,0, 0]],[1528884218,[0,0, 0]],[1528884222,[0,0, 0]],[1528884225,[0,0, 0]],[1528884229,[0,0, 0]],[1528884233,[0,0, 0]],[1528884236,[0,0, 0]],[1528884240,[0,0, 0]],[1528884244,[0,0, 0]],[1528884247,[0,0, 0]],[1528884251,[0,0, 0]],[1528884254,[0,0, 0]],[1528884258,[0,0, 0]],[1528884262,[0,0, 0]],[1528884265,[0,0, 0]],[1528884269,[0,0, 0]],[1528884272,[0,0, 0]],[1528884276,[0,0, 0]],[1528884280,[0,0, 0]],[1528884283,[0,0, 0]],[1528884287,[0,0, 0]],[1528884290,[0,0, 0]],[1528884294,[0,0, 0]],[1528884298,[0,0, 0]],[1528884301,[0,0, 0]],[1528884305,[0,0, 0]],[1528884308,[0,0, 0]],[1528884312,[0,0, 0]],[1528884316,[0,0, 0]],[1528884319,[0,0, 0]],[1528884323,[0,0, 0]],[1528884326,[0,0, 0]],[1528884330,[0,0, 0]],[1528884334,[0,0, 0]],[1528884337,[0,0, 0]],[1528884341,[0,0, 0]],[1528884344,[0,0, 0]],[1528884348,[0,0, 0]],[1528884352,[0,0, 0]],[1528884355,[0,0, 0]],[1528884359,[0,0, 0]],[1528884362,[0,0, 0]],[1528884366,[0,0, 0]],[1528884370,[0,0, 0]],[1528884373,[0,0, 0]],[1528884377,[0,0, 0]],[1528884380,[0,0, 0]],[1528884384,[0,0, 0]],[1528884388,[0,0, 0]],[1528884391,[0,0, 0]],[1528884395,[0,0, 0]],[1528884398,[0,0, 0]],[1528884402,[0,0, 0]],[1528884406,[0,0, 0]],[1528884409,[0,0, 0]],[1528884413,[0,0, 0]],[1528884416,[0,0, 0]],[1528884420,[0,0, 0]],[1528884424,[0,0, 0]],[1528884427,[0,0, 0]],[1528884431,[0,0, 0]],[1528884434,[0,0, 0]],[1528884438,[0,0, 0]],[1528884442,[0,0, 0]],[1528884445,[0,0, 0]],[1528884449,[0,0, 0]],[1528884452,[0,0, 0]],[1528884456,[0,0, 0]],[1528884460,[0,0, 0]],[1528884463,[0,0, 0]],[1528884467,[0,0, 0]],[1528884470,[0,0, 0]],[1528884474,[0,0, 0]],[1528884478,[0,0, 0]],[1528884481,[0,0, 0]],[1528884485,[0,0, 0]],[1528884488,[0,0, 0]],[1528884492,[0,0, 0]],[1528884496,[0,0, 0]],[1528884499,[0,0, 0]],[1528884503,[0,0, 0]],[1528884506,[0,0, 0]],[1528884510,[0,0, 0]],[1528884514,[0,0, 0]],[1528884517,[0,0, 0]],[1528884521,[0,0, 0]],[1528884524,[0,0, 0]],[1528884528,[0,0, 0]],[1528884532,[0,0, 0]],[1528884535,[0,0, 0]],[1528884539,[0,0, 0]],[1528884542,[0,0, 0]],[1528884546,[0,0, 0]],[1528884550,[0,0, 0]],[1528884553,[0,0, 0]],[1528884557,[0,0, 0]],[1528884560,[0,0, 0]],[1528884564,[0,0, 0]],[1528884568,[0,0, 0]],[1528884571,[0,0, 0]],[1528884575,[0,0, 0]],[1528884578,[0,0, 0]],[1528884582,[0,0, 0]],[1528884586,[0,0, 0]],[1528884589,[0,0, 0]],[1528884593,[0,0, 0]],[1528884596,[0,0, 0]],[1528884600,[0,0, 0]],[1528884604,[0,0, 0]],[1528884607,[0,0, 0]],[1528884611,[0,0, 0]],[1528884614,[0,0, 0]],[1528884618,[0,0, 0]],[1528884622,[0,0, 0]],[1528884625,[0,0, 0]],[1528884629,[0,0, 0]],[1528884632,[0,0, 0]],[1528884636,[0,0, 0]],[1528884640,[0,0, 0]],[1528884643,[0,0, 0]],[1528884647,[0,0, 0]],[1528884650,[0,0, 0]],[1528884654,[0,0, 0]],[1528884658,[0,0, 0]],[1528884661,[0,0, 0]],[1528884665,[0,0, 0]],[1528884668,[0,0, 0]],[1528884672,[0,0, 0]],[1528884676,[0,0, 0]],[1528884679,[0,0, 0]],[1528884683,[0,0, 0]],[1528884686,[0,0, 0]],[1528884690,[0,0, 0]],[1528884694,[0,0, 0]],[1528884697,[0,0, 0]],[1528884701,[0,0, 0]],[1528884704,[0,0, 0]],[1528884708,[0,0, 0]],[1528884712,[0,0, 0]],[1528884715,[0,0, 0]],[1528884719,[0,0, 0]],[1528884722,[0,0, 0]],[1528884726,[0,0, 0]],[1528884730,[0,0, 0]],[1528884733,[0,0, 0]],[1528884737,[0,0, 0]],[1528884740,[0,0, 0]],[1528884744,[0,0, 0]],[1528884748,[0,0, 0]],[1528884751,[0,0, 0]],[1528884755,[0,0, 0]],[1528884758,[0,0, 0]],[1528884762,[0,0, 0]],[1528884766,[0,0, 0]],[1528884769,[0,0, 0]],[1528884773,[0,0, 0]],[1528884776,[0,0, 0]],[1528884780,[0,0, 0]],[1528884784,[0,0, 0]],[1528884787,[0,0, 0]],[1528884791,[0,0, 0]],[1528884794,[0,0, 0]],[1528884798,[0,0, 0]],[1528884802,[0,0, 0]],[1528884805,[0,0, 0]],[1528884809,[0,0, 0]],[1528884812,[0,0, 0]],[1528884816,[0,0, 0]],[1528884820,[0,0, 0]],[1528884823,[0,0, 0]],[1528884827,[0,0, 0]],[1528884830,[0,0, 0]],[1528884834,[0,0, 0]],[1528884838,[0,0, 0]],[1528884841,[0,0, 0]],[1528884845,[0,0, 0]],[1528884848,[0,0, 0]],[1528884852,[0,0, 0]],[1528884856,[0,0, 0]],[1528884859,[0,0, 0]],[1528884863,[0,0, 0]],[1528884866,[0,0, 0]],[1528884870,[0,0, 0]],[1528884874,[0,0, 0]],[1528884877,[0,0, 0]],[1528884881,[0,0, 0]],[1528884884,[0,0, 0]],[1528884888,[0,0, 0]],[1528884892,[0,0, 0]],[1528884895,[0,0, 0]],[1528884899,[0,0, 0]],[1528884902,[0,0, 0]],[1528884906,[0,0, 0]],[1528884910,[0,0, 0]],[1528884913,[0,0, 0]],[1528884917,[0,0, 0]],[1528884920,[0,0, 0]],[1528884924,[0,0, 0]],[1528884928,[0,0, 0]],[1528884931,[0,0, 0]],[1528884935,[0,0, 0]],[1528884938,[0,0, 0]],[1528884942,[0,0, 0]],[1528884946,[0,0, 0]],[1528884949,[0,0, 0]],[1528884953,[0,0, 0]],[1528884957,[0,0, 0]],[1528884960,[0,0, 0]],[1528884964,[0,0, 0]],[1528884967,[0,0, 0]],[1528884971,[0,0, 0]],[1528884975,[0,0, 0]],[1528884978,[0,0, 0]],[1528884982,[0,0, 0]],[1528884985,[0,0, 0]],[1528884989,[0,0, 0]],[1528884993,[0,0, 0]],[1528884996,[0,0, 0]],[1528885000,[0,0, 0]],[1528885003,[0,0, 0]],[1528885007,[0,0, 0]],[1528885011,[0,0, 0]],[1528885014,[0,0, 0]],[1528885018,[0,0, 0]],[1528885021,[0,0, 0]],[1528885025,[0,0, 0]],[1528885029,[0,0, 0]],[1528885032,[0,0, 0]],[1528885036,[0,0, 0]],[1528885039,[0,0, 0]],[1528885043,[0,0, 0]],[1528885047,[0,0, 0]],[1528885050,[0,0, 0]],[1528885054,[0,0, 0]],[1528885057,[0,0, 0]],[1528885061,[0,0, 0]],[1528885065,[0,0, 0]],[1528885068,[0,0, 0]],[1528885072,[0,0, 0]],[1528885075,[0,0, 0]],[1528885079,[0,0, 0]],[1528885083,[0,0, 0]],[1528885086,[0,0, 0]],[1528885090,[0,0, 0]],[1528885093,[0,0, 0]],[1528885097,[0,0, 0]],[1528885101,[0,0, 0]],[1528885104,[0,0, 0]],[1528885108,[0,0, 0]],[1528885111,[0,0, 0]],[1528885115,[0,0, 0]],[1528885119,[0,0, 0]],[1528885122,[0,0, 0]],[1528885126,[0,0, 0]],[1528885129,[0,0, 0]],[1528885133,[0,0, 0]],[1528885137,[0,0, 0]],[1528885140,[0,0, 0]],[1528885144,[0,0, 0]],[1528885147,[0,0, 0]],[1528885151,[0,0, 0]],[1528885155,[0,0, 0]],[1528885158,[0,0, 0]],[1528885162,[0,0, 0]],[1528885165,[0,0, 0]],[1528885169,[0,0, 0]],[1528885173,[0,0, 0]],[1528885176,[0,0, 0]],[1528885180,[0,0, 0]],[1528885183,[0,0, 0]],[1528885187,[0,0, 0]],[1528885191,[0,0, 0]],[1528885194,[0,0, 0]],[1528885198,[0,0, 0]],[1528885201,[0,0, 0]],[1528885205,[0,0, 0]],[1528885209,[0,0, 0]],[1528885212,[0,0, 0]],[1528885216,[0,0, 0]],[1528885219,[0,0, 0]],[1528885223,[0,0, 0]],[1528885227,[0,0, 0]],[1528885230,[0,0, 0]],[1528885234,[0,0, 0]],[1528885237,[0,0, 0]],[1528885241,[0,0, 0]],[1528885245,[0,0, 0]],[1528885248,[0,0, 0]],[1528885252,[0,0, 0]],[1528885255,[0,0, 0]],[1528885259,[0,0, 0]],[1528885263,[0,0, 0]],[1528885266,[0,0, 0]],[1528885270,[0,0, 0]],[1528885273,[0,0, 0]],[1528885277,[0,0, 0]],[1528885281,[0,0, 0]],[1528885284,[0,0, 0]],[1528885288,[0,0, 0]],[1528885291,[0,0, 0]],[1528885295,[0,0, 0]],[1528885299,[0,0, 0]],[1528885302,[0,0, 0]],[1528885306,[0,0, 0]],[1528885309,[0,0, 0]],[1528885313,[0,0, 0]],[1528885317,[0,0, 0]],[1528885320,[0,0, 0]],[1528885324,[0,0, 0]],[1528885327,[0,0, 0]],[1528885331,[0,0, 0]],[1528885335,[0,0, 0]],[1528885338,[0,0, 0]],[1528885342,[0,0, 0]],[1528885345,[0,0, 0]],[1528885349,[0,0, 0]],[1528885353,[0,0, 0]],[1528885356,[0,0, 0]],[1528885360,[0,0, 0]],[1528885363,[0,0, 0]],[1528885367,[0,0, 0]],[1528885371,[0,0, 0]],[1528885374,[0,0, 0]],[1528885378,[0,0, 0]],[1528885381,[0,0, 0]],[1528885385,[0,0, 0]],[1528885389,[0,0, 0]],[1528885392,[0,0, 0]],[1528885396,[0,0, 0]],[1528885399,[0,0, 0]],[1528885403,[0,0, 0]],[1528885407,[0,0, 0]],[1528885410,[0,0, 0]],[1528885414,[0,0, 0]],[1528885417,[0,0, 0]],[1528885421,[0,0, 0]],[1528885425,[0,0, 0]],[1528885428,[1,1, 0]],[1528885432,[1,0, 1]],[1528885435,[1,0, 1]],[1528885439,[0,0, 0]],[1528885443,[0,0, 0]],[1528885446,[0,0, 0]],[1528885450,[0,0, 0]],[1528885453,[0,0, 0]],[1528885457,[0,0, 0]],[1528885461,[0,0, 0]],[1528885464,[0,0, 0]],[1528885468,[0,0, 0]],[1528885471,[0,0, 0]],[1528885475,[0,0, 0]],[1528885479,[0,0, 0]],[1528885482,[0,0, 0]],[1528885486,[0,0, 0]],[1528885489,[1,0, 1]],[1528885493,[1,0, 1]],[1528885497,[1,0, 1]],[1528885500,[1,0, 1]],[1528885504,[1,0, 1]],[1528885507,[1,0, 1]],[1528885511,[1,0, 1]],[1528885515,[1,0, 1]],[1528885518,[1,0, 1]],[1528885522,[1,0, 1]],[1528885525,[1,0, 1]],[1528885529,[1,0, 1]],[1528885533,[1,0, 1]],[1528885536,[0,0, 0]],[1528885540,[1,0, 1]],[1528885543,[1,0, 1]],[1528885547,[1,0, 1]],[1528885551,[1,0, 1]],[1528885554,[1,0, 1]],[1528885558,[1,0, 1]],[1528885561,[1,0, 1]],[1528885565,[1,0, 1]],[1528885569,[1,0, 1]],[1528885572,[0,0, 0]],[1528885576,[1,0, 1]],[1528885579,[1,0, 1]],[1528885583,[1,0, 1]],[1528885587,[1,0, 1]],[1528885590,[1,0, 1]],[1528885594,[1,0, 1]],[1528885597,[1,0, 1]],[1528885601,[1,0, 1]],[1528885605,[1,0, 1]],[1528885608,[1,0, 1]],[1528885612,[1,0, 1]],[1528885615,[1,0, 1]],[1528885619,[0,0, 0]],[1528885623,[1,0, 1]],[1528885626,[1,0, 1]],[1528885630,[1,0, 1]],[1528885633,[1,0, 1]],[1528885637,[1,0, 1]],[1528885641,[1,0, 1]],[1528885644,[1,0, 1]],[1528885648,[1,0, 1]],[1528885651,[1,0, 1]],[1528885655,[1,0, 1]],[1528885659,[1,0, 1]],[1528885662,[1,0, 1]],[1528885666,[1,0, 1]],[1528885669,[1,0, 1]],[1528885673,[1,0, 1]],[1528885677,[1,0, 1]],[1528885680,[1,0, 1]],[1528885684,[1,0, 1]],[1528885688,[1,0, 1]],[1528885691,[1,0, 1]],[1528885695,[1,0, 1]],[1528885698,[1,0, 1]],[1528885702,[1,0, 1]],[1528885706,[1,0, 1]],[1528885709,[1,0, 1]],[1528885713,[1,0, 1]],[1528885716,[1,0, 1]],[1528885720,[1,0, 1]],[1528885724,[1,0, 1]],[1528885727,[1,0, 1]],[1528885731,[1,0, 1]],[1528885734,[1,0, 1]],[1528885738,[1,0, 1]],[1528885742,[1,0, 1]],[1528885745,[2,1, 1]],[1528885749,[1,0, 1]],[1528885752,[2,1, 1]],[1528885756,[1,0, 1]],[1528885760,[1,0, 1]],[1528885763,[1,0, 1]],[1528885767,[1,0, 1]],[1528885770,[1,0, 1]],[1528885774,[1,0, 1]],[1528885778,[1,0, 1]],[1528885781,[1,0, 1]],[1528885785,[1,0, 1]],[1528885788,[1,0, 1]],[1528885792,[1,0, 1]],[1528885796,[1,0, 1]],[1528885799,[1,0, 1]],[1528885803,[1,0, 1]],[1528885806,[1,0, 1]],[1528885810,[1,0, 1]],[1528885814,[1,0, 1]],[1528885817,[1,0, 1]],[1528885821,[1,0, 1]],[1528885824,[1,0, 1]],[1528885828,[2,0, 2]],[1528885832,[1,0, 1]],[1528885835,[1,0, 1]],[1528885839,[1,0, 1]],[1528885842,[1,0, 1]],[1528885846,[1,0, 1]],[1528885850,[1,0, 1]],[1528885853,[1,0, 1]],[1528885857,[1,0, 1]],[1528885860,[2,0, 2]],[1528885864,[2,0, 2]],[1528885868,[2,0, 2]],[1528885871,[2,0, 2]],[1528885875,[2,0, 2]],[1528885878,[2,0, 2]],[1528885882,[2,1, 1]],[1528885886,[2,0, 2]],[1528885889,[2,0, 2]],[1528885893,[2,0, 2]],[1528885896,[2,0, 2]],[1528885900,[1,0, 1]],[1528885904,[1,0, 1]],[1528885907,[1,0, 1]],[1528885911,[1,0, 1]],[1528885914,[1,0, 1]],[1528885918,[1,0, 1]],[1528885922,[1,0, 1]],[1528885925,[1,0, 1]],[1528885929,[1,0, 1]],[1528885932,[1,0, 1]],[1528885936,[1,0, 1]],[1528885940,[1,0, 1]],[1528885943,[1,0, 1]],[1528885947,[1,0, 1]],[1528885950,[1,0, 1]],[1528885954,[1,0, 1]],[1528885958,[1,0, 1]],[1528885961,[1,0, 1]],[1528885965,[1,0, 1]],[1528885968,[1,0, 1]],[1528885972,[1,0, 1]],[1528885976,[1,0, 1]],[1528885979,[1,0, 1]],[1528885983,[1,0, 1]],[1528885986,[1,0, 1]],[1528885990,[1,0, 1]],[1528885994,[1,0, 1]],[1528885997,[1,0, 1]],[1528886001,[1,0, 1]],[1528886004,[1,0, 1]],[1528886008,[1,0, 1]],[1528886012,[1,0, 1]],[1528886015,[1,0, 1]],[1528886019,[1,0, 1]],[1528886022,[1,0, 1]],[1528886026,[1,0, 1]],[1528886030,[1,0, 1]],[1528886033,[1,0, 1]],[1528886037,[1,0, 1]],[1528886040,[1,0, 1]],[1528886044,[1,0, 1]],[1528886048,[1,0, 1]],[1528886051,[1,0, 1]],[1528886055,[1,0, 1]],[1528886058,[1,0, 1]],[1528886062,[1,0, 1]],[1528886066,[1,0, 1]],[1528886069,[1,0, 1]],[1528886073,[1,0, 1]],[1528886076,[1,0, 1]],[1528886080,[1,0, 1]],[1528886084,[1,0, 1]],[1528886087,[1,0, 1]],[1528886091,[1,0, 1]],[1528886094,[1,0, 1]],[1528886098,[1,0, 1]],[1528886102,[1,0, 1]],[1528886105,[1,0, 1]],[1528886109,[1,0, 1]],[1528886112,[1,0, 1]],[1528886116,[1,0, 1]],[1528886120,[0,0, 0]],[1528886123,[1,0, 1]],[1528886127,[1,0, 1]],[1528886130,[1,0, 1]],[1528886134,[1,0, 1]],[1528886138,[1,0, 1]],[1528886141,[1,0, 1]],[1528886145,[1,0, 1]],[1528886148,[1,0, 1]],[1528886152,[1,0, 1]],[1528886156,[1,0, 1]],[1528886159,[1,0, 1]],[1528886163,[1,0, 1]],[1528886166,[1,0, 1]],[1528886170,[1,0, 1]],[1528886174,[1,0, 1]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'container_requests',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
itemDistance: 10,
y: -285,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
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',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
series: [
{
color: '#4572A7',
name: 'All',
data: container_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 container_responses = unpack([[1528882576,[0,0, 0]],[1528882580,[0,0, 0]],[1528882583,[0,0, 0]],[1528882587,[0,0, 0]],[1528882591,[0,0, 0]],[1528882594,[0,0, 0]],[1528882598,[0,0, 0]],[1528882601,[0,0, 0]],[1528882605,[0,0, 0]],[1528882609,[0,0, 0]],[1528882612,[0,0, 0]],[1528882616,[0,0, 0]],[1528882619,[0,0, 0]],[1528882623,[0,0, 0]],[1528882627,[0,0, 0]],[1528882630,[0,0, 0]],[1528882634,[0,0, 0]],[1528882637,[0,0, 0]],[1528882641,[0,0, 0]],[1528882645,[0,0, 0]],[1528882648,[0,0, 0]],[1528882652,[0,0, 0]],[1528882655,[0,0, 0]],[1528882659,[0,0, 0]],[1528882663,[0,0, 0]],[1528882666,[0,0, 0]],[1528882670,[0,0, 0]],[1528882673,[0,0, 0]],[1528882677,[0,0, 0]],[1528882681,[0,0, 0]],[1528882684,[0,0, 0]],[1528882688,[0,0, 0]],[1528882691,[0,0, 0]],[1528882695,[0,0, 0]],[1528882699,[0,0, 0]],[1528882702,[0,0, 0]],[1528882706,[0,0, 0]],[1528882709,[0,0, 0]],[1528882713,[0,0, 0]],[1528882717,[0,0, 0]],[1528882720,[0,0, 0]],[1528882724,[0,0, 0]],[1528882727,[0,0, 0]],[1528882731,[0,0, 0]],[1528882735,[0,0, 0]],[1528882738,[0,0, 0]],[1528882742,[0,0, 0]],[1528882745,[0,0, 0]],[1528882749,[0,0, 0]],[1528882753,[0,0, 0]],[1528882756,[0,0, 0]],[1528882760,[0,0, 0]],[1528882763,[0,0, 0]],[1528882767,[0,0, 0]],[1528882771,[0,0, 0]],[1528882774,[0,0, 0]],[1528882778,[0,0, 0]],[1528882781,[0,0, 0]],[1528882785,[0,0, 0]],[1528882789,[0,0, 0]],[1528882792,[0,0, 0]],[1528882796,[0,0, 0]],[1528882800,[0,0, 0]],[1528882803,[0,0, 0]],[1528882807,[0,0, 0]],[1528882810,[0,0, 0]],[1528882814,[0,0, 0]],[1528882818,[0,0, 0]],[1528882821,[0,0, 0]],[1528882825,[0,0, 0]],[1528882828,[0,0, 0]],[1528882832,[0,0, 0]],[1528882836,[0,0, 0]],[1528882839,[0,0, 0]],[1528882843,[0,0, 0]],[1528882846,[0,0, 0]],[1528882850,[0,0, 0]],[1528882854,[0,0, 0]],[1528882857,[0,0, 0]],[1528882861,[0,0, 0]],[1528882864,[0,0, 0]],[1528882868,[0,0, 0]],[1528882872,[0,0, 0]],[1528882875,[0,0, 0]],[1528882879,[0,0, 0]],[1528882882,[0,0, 0]],[1528882886,[0,0, 0]],[1528882890,[0,0, 0]],[1528882893,[0,0, 0]],[1528882897,[0,0, 0]],[1528882900,[0,0, 0]],[1528882904,[0,0, 0]],[1528882908,[0,0, 0]],[1528882911,[0,0, 0]],[1528882915,[0,0, 0]],[1528882918,[0,0, 0]],[1528882922,[0,0, 0]],[1528882926,[0,0, 0]],[1528882929,[0,0, 0]],[1528882933,[0,0, 0]],[1528882936,[0,0, 0]],[1528882940,[0,0, 0]],[1528882944,[0,0, 0]],[1528882947,[0,0, 0]],[1528882951,[0,0, 0]],[1528882954,[0,0, 0]],[1528882958,[0,0, 0]],[1528882962,[0,0, 0]],[1528882965,[0,0, 0]],[1528882969,[0,0, 0]],[1528882972,[0,0, 0]],[1528882976,[0,0, 0]],[1528882980,[0,0, 0]],[1528882983,[0,0, 0]],[1528882987,[0,0, 0]],[1528882990,[0,0, 0]],[1528882994,[0,0, 0]],[1528882998,[0,0, 0]],[1528883001,[0,0, 0]],[1528883005,[0,0, 0]],[1528883008,[0,0, 0]],[1528883012,[0,0, 0]],[1528883016,[0,0, 0]],[1528883019,[0,0, 0]],[1528883023,[0,0, 0]],[1528883026,[0,0, 0]],[1528883030,[0,0, 0]],[1528883034,[0,0, 0]],[1528883037,[0,0, 0]],[1528883041,[0,0, 0]],[1528883044,[0,0, 0]],[1528883048,[0,0, 0]],[1528883052,[0,0, 0]],[1528883055,[0,0, 0]],[1528883059,[0,0, 0]],[1528883062,[0,0, 0]],[1528883066,[0,0, 0]],[1528883070,[0,0, 0]],[1528883073,[0,0, 0]],[1528883077,[0,0, 0]],[1528883080,[0,0, 0]],[1528883084,[0,0, 0]],[1528883088,[0,0, 0]],[1528883091,[0,0, 0]],[1528883095,[0,0, 0]],[1528883098,[0,0, 0]],[1528883102,[0,0, 0]],[1528883106,[0,0, 0]],[1528883109,[0,0, 0]],[1528883113,[0,0, 0]],[1528883116,[0,0, 0]],[1528883120,[0,0, 0]],[1528883124,[0,0, 0]],[1528883127,[0,0, 0]],[1528883131,[0,0, 0]],[1528883134,[0,0, 0]],[1528883138,[0,0, 0]],[1528883142,[0,0, 0]],[1528883145,[0,0, 0]],[1528883149,[0,0, 0]],[1528883152,[0,0, 0]],[1528883156,[0,0, 0]],[1528883160,[0,0, 0]],[1528883163,[0,0, 0]],[1528883167,[0,0, 0]],[1528883170,[0,0, 0]],[1528883174,[0,0, 0]],[1528883178,[0,0, 0]],[1528883181,[0,0, 0]],[1528883185,[0,0, 0]],[1528883188,[0,0, 0]],[1528883192,[0,0, 0]],[1528883196,[0,0, 0]],[1528883199,[0,0, 0]],[1528883203,[0,0, 0]],[1528883206,[0,0, 0]],[1528883210,[0,0, 0]],[1528883214,[0,0, 0]],[1528883217,[0,0, 0]],[1528883221,[0,0, 0]],[1528883224,[0,0, 0]],[1528883228,[0,0, 0]],[1528883232,[0,0, 0]],[1528883235,[0,0, 0]],[1528883239,[0,0, 0]],[1528883242,[0,0, 0]],[1528883246,[0,0, 0]],[1528883250,[0,0, 0]],[1528883253,[0,0, 0]],[1528883257,[0,0, 0]],[1528883260,[0,0, 0]],[1528883264,[0,0, 0]],[1528883268,[0,0, 0]],[1528883271,[0,0, 0]],[1528883275,[0,0, 0]],[1528883278,[0,0, 0]],[1528883282,[0,0, 0]],[1528883286,[0,0, 0]],[1528883289,[0,0, 0]],[1528883293,[0,0, 0]],[1528883296,[0,0, 0]],[1528883300,[0,0, 0]],[1528883304,[0,0, 0]],[1528883307,[0,0, 0]],[1528883311,[0,0, 0]],[1528883314,[0,0, 0]],[1528883318,[0,0, 0]],[1528883322,[0,0, 0]],[1528883325,[0,0, 0]],[1528883329,[0,0, 0]],[1528883332,[0,0, 0]],[1528883336,[0,0, 0]],[1528883340,[0,0, 0]],[1528883343,[0,0, 0]],[1528883347,[0,0, 0]],[1528883350,[0,0, 0]],[1528883354,[0,0, 0]],[1528883358,[0,0, 0]],[1528883361,[0,0, 0]],[1528883365,[0,0, 0]],[1528883368,[0,0, 0]],[1528883372,[0,0, 0]],[1528883376,[0,0, 0]],[1528883379,[0,0, 0]],[1528883383,[0,0, 0]],[1528883386,[0,0, 0]],[1528883390,[0,0, 0]],[1528883394,[0,0, 0]],[1528883397,[0,0, 0]],[1528883401,[0,0, 0]],[1528883404,[0,0, 0]],[1528883408,[0,0, 0]],[1528883412,[0,0, 0]],[1528883415,[0,0, 0]],[1528883419,[0,0, 0]],[1528883422,[0,0, 0]],[1528883426,[0,0, 0]],[1528883430,[0,0, 0]],[1528883433,[0,0, 0]],[1528883437,[0,0, 0]],[1528883440,[0,0, 0]],[1528883444,[0,0, 0]],[1528883448,[0,0, 0]],[1528883451,[0,0, 0]],[1528883455,[0,0, 0]],[1528883458,[0,0, 0]],[1528883462,[0,0, 0]],[1528883466,[0,0, 0]],[1528883469,[0,0, 0]],[1528883473,[0,0, 0]],[1528883476,[0,0, 0]],[1528883480,[0,0, 0]],[1528883484,[0,0, 0]],[1528883487,[0,0, 0]],[1528883491,[0,0, 0]],[1528883494,[0,0, 0]],[1528883498,[0,0, 0]],[1528883502,[0,0, 0]],[1528883505,[0,0, 0]],[1528883509,[0,0, 0]],[1528883513,[0,0, 0]],[1528883516,[0,0, 0]],[1528883520,[0,0, 0]],[1528883523,[0,0, 0]],[1528883527,[0,0, 0]],[1528883531,[0,0, 0]],[1528883534,[0,0, 0]],[1528883538,[0,0, 0]],[1528883541,[0,0, 0]],[1528883545,[0,0, 0]],[1528883549,[0,0, 0]],[1528883552,[0,0, 0]],[1528883556,[0,0, 0]],[1528883559,[0,0, 0]],[1528883563,[0,0, 0]],[1528883567,[0,0, 0]],[1528883570,[0,0, 0]],[1528883574,[0,0, 0]],[1528883577,[0,0, 0]],[1528883581,[0,0, 0]],[1528883585,[0,0, 0]],[1528883588,[0,0, 0]],[1528883592,[0,0, 0]],[1528883595,[0,0, 0]],[1528883599,[0,0, 0]],[1528883603,[0,0, 0]],[1528883606,[0,0, 0]],[1528883610,[0,0, 0]],[1528883613,[0,0, 0]],[1528883617,[0,0, 0]],[1528883621,[0,0, 0]],[1528883624,[0,0, 0]],[1528883628,[0,0, 0]],[1528883631,[0,0, 0]],[1528883635,[0,0, 0]],[1528883639,[0,0, 0]],[1528883642,[0,0, 0]],[1528883646,[0,0, 0]],[1528883649,[0,0, 0]],[1528883653,[0,0, 0]],[1528883657,[0,0, 0]],[1528883660,[0,0, 0]],[1528883664,[0,0, 0]],[1528883667,[0,0, 0]],[1528883671,[0,0, 0]],[1528883675,[0,0, 0]],[1528883678,[0,0, 0]],[1528883682,[0,0, 0]],[1528883685,[0,0, 0]],[1528883689,[0,0, 0]],[1528883693,[0,0, 0]],[1528883696,[0,0, 0]],[1528883700,[0,0, 0]],[1528883703,[0,0, 0]],[1528883707,[0,0, 0]],[1528883711,[0,0, 0]],[1528883714,[0,0, 0]],[1528883718,[0,0, 0]],[1528883721,[0,0, 0]],[1528883725,[0,0, 0]],[1528883729,[0,0, 0]],[1528883732,[0,0, 0]],[1528883736,[0,0, 0]],[1528883739,[0,0, 0]],[1528883743,[0,0, 0]],[1528883747,[0,0, 0]],[1528883750,[0,0, 0]],[1528883754,[0,0, 0]],[1528883757,[0,0, 0]],[1528883761,[0,0, 0]],[1528883765,[0,0, 0]],[1528883768,[0,0, 0]],[1528883772,[0,0, 0]],[1528883775,[0,0, 0]],[1528883779,[0,0, 0]],[1528883783,[0,0, 0]],[1528883786,[0,0, 0]],[1528883790,[0,0, 0]],[1528883793,[0,0, 0]],[1528883797,[0,0, 0]],[1528883801,[0,0, 0]],[1528883804,[0,0, 0]],[1528883808,[0,0, 0]],[1528883811,[0,0, 0]],[1528883815,[0,0, 0]],[1528883819,[0,0, 0]],[1528883822,[0,0, 0]],[1528883826,[0,0, 0]],[1528883829,[0,0, 0]],[1528883833,[0,0, 0]],[1528883837,[0,0, 0]],[1528883840,[0,0, 0]],[1528883844,[0,0, 0]],[1528883847,[0,0, 0]],[1528883851,[0,0, 0]],[1528883855,[0,0, 0]],[1528883858,[0,0, 0]],[1528883862,[0,0, 0]],[1528883865,[0,0, 0]],[1528883869,[0,0, 0]],[1528883873,[0,0, 0]],[1528883876,[0,0, 0]],[1528883880,[0,0, 0]],[1528883883,[0,0, 0]],[1528883887,[0,0, 0]],[1528883891,[0,0, 0]],[1528883894,[0,0, 0]],[1528883898,[0,0, 0]],[1528883901,[0,0, 0]],[1528883905,[0,0, 0]],[1528883909,[0,0, 0]],[1528883912,[0,0, 0]],[1528883916,[0,0, 0]],[1528883919,[0,0, 0]],[1528883923,[0,0, 0]],[1528883927,[0,0, 0]],[1528883930,[0,0, 0]],[1528883934,[0,0, 0]],[1528883937,[0,0, 0]],[1528883941,[0,0, 0]],[1528883945,[0,0, 0]],[1528883948,[0,0, 0]],[1528883952,[0,0, 0]],[1528883955,[0,0, 0]],[1528883959,[0,0, 0]],[1528883963,[0,0, 0]],[1528883966,[0,0, 0]],[1528883970,[0,0, 0]],[1528883973,[0,0, 0]],[1528883977,[0,0, 0]],[1528883981,[0,0, 0]],[1528883984,[0,0, 0]],[1528883988,[0,0, 0]],[1528883991,[0,0, 0]],[1528883995,[0,0, 0]],[1528883999,[0,0, 0]],[1528884002,[0,0, 0]],[1528884006,[0,0, 0]],[1528884009,[0,0, 0]],[1528884013,[0,0, 0]],[1528884017,[0,0, 0]],[1528884020,[0,0, 0]],[1528884024,[0,0, 0]],[1528884027,[0,0, 0]],[1528884031,[0,0, 0]],[1528884035,[0,0, 0]],[1528884038,[0,0, 0]],[1528884042,[0,0, 0]],[1528884045,[0,0, 0]],[1528884049,[0,0, 0]],[1528884053,[0,0, 0]],[1528884056,[0,0, 0]],[1528884060,[0,0, 0]],[1528884063,[0,0, 0]],[1528884067,[0,0, 0]],[1528884071,[0,0, 0]],[1528884074,[0,0, 0]],[1528884078,[0,0, 0]],[1528884081,[0,0, 0]],[1528884085,[0,0, 0]],[1528884089,[0,0, 0]],[1528884092,[0,0, 0]],[1528884096,[0,0, 0]],[1528884099,[0,0, 0]],[1528884103,[0,0, 0]],[1528884107,[0,0, 0]],[1528884110,[0,0, 0]],[1528884114,[0,0, 0]],[1528884117,[0,0, 0]],[1528884121,[0,0, 0]],[1528884125,[0,0, 0]],[1528884128,[0,0, 0]],[1528884132,[0,0, 0]],[1528884135,[0,0, 0]],[1528884139,[0,0, 0]],[1528884143,[0,0, 0]],[1528884146,[0,0, 0]],[1528884150,[0,0, 0]],[1528884153,[0,0, 0]],[1528884157,[0,0, 0]],[1528884161,[0,0, 0]],[1528884164,[0,0, 0]],[1528884168,[0,0, 0]],[1528884171,[0,0, 0]],[1528884175,[0,0, 0]],[1528884179,[0,0, 0]],[1528884182,[0,0, 0]],[1528884186,[0,0, 0]],[1528884189,[0,0, 0]],[1528884193,[0,0, 0]],[1528884197,[0,0, 0]],[1528884200,[0,0, 0]],[1528884204,[0,0, 0]],[1528884207,[0,0, 0]],[1528884211,[0,0, 0]],[1528884215,[0,0, 0]],[1528884218,[0,0, 0]],[1528884222,[0,0, 0]],[1528884225,[0,0, 0]],[1528884229,[0,0, 0]],[1528884233,[0,0, 0]],[1528884236,[0,0, 0]],[1528884240,[0,0, 0]],[1528884244,[0,0, 0]],[1528884247,[0,0, 0]],[1528884251,[0,0, 0]],[1528884254,[0,0, 0]],[1528884258,[0,0, 0]],[1528884262,[0,0, 0]],[1528884265,[0,0, 0]],[1528884269,[0,0, 0]],[1528884272,[0,0, 0]],[1528884276,[0,0, 0]],[1528884280,[0,0, 0]],[1528884283,[0,0, 0]],[1528884287,[0,0, 0]],[1528884290,[0,0, 0]],[1528884294,[0,0, 0]],[1528884298,[0,0, 0]],[1528884301,[0,0, 0]],[1528884305,[0,0, 0]],[1528884308,[0,0, 0]],[1528884312,[0,0, 0]],[1528884316,[0,0, 0]],[1528884319,[0,0, 0]],[1528884323,[0,0, 0]],[1528884326,[0,0, 0]],[1528884330,[0,0, 0]],[1528884334,[0,0, 0]],[1528884337,[0,0, 0]],[1528884341,[0,0, 0]],[1528884344,[0,0, 0]],[1528884348,[0,0, 0]],[1528884352,[0,0, 0]],[1528884355,[0,0, 0]],[1528884359,[0,0, 0]],[1528884362,[0,0, 0]],[1528884366,[0,0, 0]],[1528884370,[0,0, 0]],[1528884373,[0,0, 0]],[1528884377,[0,0, 0]],[1528884380,[0,0, 0]],[1528884384,[0,0, 0]],[1528884388,[0,0, 0]],[1528884391,[0,0, 0]],[1528884395,[0,0, 0]],[1528884398,[0,0, 0]],[1528884402,[0,0, 0]],[1528884406,[0,0, 0]],[1528884409,[0,0, 0]],[1528884413,[0,0, 0]],[1528884416,[0,0, 0]],[1528884420,[0,0, 0]],[1528884424,[0,0, 0]],[1528884427,[0,0, 0]],[1528884431,[0,0, 0]],[1528884434,[0,0, 0]],[1528884438,[0,0, 0]],[1528884442,[0,0, 0]],[1528884445,[0,0, 0]],[1528884449,[0,0, 0]],[1528884452,[0,0, 0]],[1528884456,[0,0, 0]],[1528884460,[0,0, 0]],[1528884463,[0,0, 0]],[1528884467,[0,0, 0]],[1528884470,[0,0, 0]],[1528884474,[0,0, 0]],[1528884478,[0,0, 0]],[1528884481,[0,0, 0]],[1528884485,[0,0, 0]],[1528884488,[0,0, 0]],[1528884492,[0,0, 0]],[1528884496,[0,0, 0]],[1528884499,[0,0, 0]],[1528884503,[0,0, 0]],[1528884506,[0,0, 0]],[1528884510,[0,0, 0]],[1528884514,[0,0, 0]],[1528884517,[0,0, 0]],[1528884521,[0,0, 0]],[1528884524,[0,0, 0]],[1528884528,[0,0, 0]],[1528884532,[0,0, 0]],[1528884535,[0,0, 0]],[1528884539,[0,0, 0]],[1528884542,[0,0, 0]],[1528884546,[0,0, 0]],[1528884550,[0,0, 0]],[1528884553,[0,0, 0]],[1528884557,[0,0, 0]],[1528884560,[0,0, 0]],[1528884564,[0,0, 0]],[1528884568,[0,0, 0]],[1528884571,[0,0, 0]],[1528884575,[0,0, 0]],[1528884578,[0,0, 0]],[1528884582,[0,0, 0]],[1528884586,[0,0, 0]],[1528884589,[0,0, 0]],[1528884593,[0,0, 0]],[1528884596,[0,0, 0]],[1528884600,[0,0, 0]],[1528884604,[0,0, 0]],[1528884607,[0,0, 0]],[1528884611,[0,0, 0]],[1528884614,[0,0, 0]],[1528884618,[0,0, 0]],[1528884622,[0,0, 0]],[1528884625,[0,0, 0]],[1528884629,[0,0, 0]],[1528884632,[0,0, 0]],[1528884636,[0,0, 0]],[1528884640,[0,0, 0]],[1528884643,[0,0, 0]],[1528884647,[0,0, 0]],[1528884650,[0,0, 0]],[1528884654,[0,0, 0]],[1528884658,[0,0, 0]],[1528884661,[0,0, 0]],[1528884665,[0,0, 0]],[1528884668,[0,0, 0]],[1528884672,[0,0, 0]],[1528884676,[0,0, 0]],[1528884679,[0,0, 0]],[1528884683,[0,0, 0]],[1528884686,[0,0, 0]],[1528884690,[0,0, 0]],[1528884694,[0,0, 0]],[1528884697,[0,0, 0]],[1528884701,[0,0, 0]],[1528884704,[0,0, 0]],[1528884708,[0,0, 0]],[1528884712,[0,0, 0]],[1528884715,[0,0, 0]],[1528884719,[0,0, 0]],[1528884722,[0,0, 0]],[1528884726,[0,0, 0]],[1528884730,[0,0, 0]],[1528884733,[0,0, 0]],[1528884737,[0,0, 0]],[1528884740,[0,0, 0]],[1528884744,[0,0, 0]],[1528884748,[0,0, 0]],[1528884751,[0,0, 0]],[1528884755,[0,0, 0]],[1528884758,[0,0, 0]],[1528884762,[0,0, 0]],[1528884766,[0,0, 0]],[1528884769,[0,0, 0]],[1528884773,[0,0, 0]],[1528884776,[0,0, 0]],[1528884780,[0,0, 0]],[1528884784,[0,0, 0]],[1528884787,[0,0, 0]],[1528884791,[0,0, 0]],[1528884794,[0,0, 0]],[1528884798,[0,0, 0]],[1528884802,[0,0, 0]],[1528884805,[0,0, 0]],[1528884809,[0,0, 0]],[1528884812,[0,0, 0]],[1528884816,[0,0, 0]],[1528884820,[0,0, 0]],[1528884823,[0,0, 0]],[1528884827,[0,0, 0]],[1528884830,[0,0, 0]],[1528884834,[0,0, 0]],[1528884838,[0,0, 0]],[1528884841,[0,0, 0]],[1528884845,[0,0, 0]],[1528884848,[0,0, 0]],[1528884852,[0,0, 0]],[1528884856,[0,0, 0]],[1528884859,[0,0, 0]],[1528884863,[0,0, 0]],[1528884866,[0,0, 0]],[1528884870,[0,0, 0]],[1528884874,[0,0, 0]],[1528884877,[0,0, 0]],[1528884881,[0,0, 0]],[1528884884,[0,0, 0]],[1528884888,[0,0, 0]],[1528884892,[0,0, 0]],[1528884895,[0,0, 0]],[1528884899,[0,0, 0]],[1528884902,[0,0, 0]],[1528884906,[0,0, 0]],[1528884910,[0,0, 0]],[1528884913,[0,0, 0]],[1528884917,[0,0, 0]],[1528884920,[0,0, 0]],[1528884924,[0,0, 0]],[1528884928,[0,0, 0]],[1528884931,[0,0, 0]],[1528884935,[0,0, 0]],[1528884938,[0,0, 0]],[1528884942,[0,0, 0]],[1528884946,[0,0, 0]],[1528884949,[0,0, 0]],[1528884953,[0,0, 0]],[1528884957,[0,0, 0]],[1528884960,[0,0, 0]],[1528884964,[0,0, 0]],[1528884967,[0,0, 0]],[1528884971,[0,0, 0]],[1528884975,[0,0, 0]],[1528884978,[0,0, 0]],[1528884982,[0,0, 0]],[1528884985,[0,0, 0]],[1528884989,[0,0, 0]],[1528884993,[0,0, 0]],[1528884996,[0,0, 0]],[1528885000,[0,0, 0]],[1528885003,[0,0, 0]],[1528885007,[0,0, 0]],[1528885011,[0,0, 0]],[1528885014,[0,0, 0]],[1528885018,[0,0, 0]],[1528885021,[0,0, 0]],[1528885025,[0,0, 0]],[1528885029,[0,0, 0]],[1528885032,[0,0, 0]],[1528885036,[0,0, 0]],[1528885039,[0,0, 0]],[1528885043,[0,0, 0]],[1528885047,[0,0, 0]],[1528885050,[0,0, 0]],[1528885054,[0,0, 0]],[1528885057,[0,0, 0]],[1528885061,[0,0, 0]],[1528885065,[0,0, 0]],[1528885068,[0,0, 0]],[1528885072,[0,0, 0]],[1528885075,[0,0, 0]],[1528885079,[0,0, 0]],[1528885083,[0,0, 0]],[1528885086,[0,0, 0]],[1528885090,[0,0, 0]],[1528885093,[0,0, 0]],[1528885097,[0,0, 0]],[1528885101,[0,0, 0]],[1528885104,[0,0, 0]],[1528885108,[0,0, 0]],[1528885111,[0,0, 0]],[1528885115,[0,0, 0]],[1528885119,[0,0, 0]],[1528885122,[0,0, 0]],[1528885126,[0,0, 0]],[1528885129,[0,0, 0]],[1528885133,[0,0, 0]],[1528885137,[0,0, 0]],[1528885140,[0,0, 0]],[1528885144,[0,0, 0]],[1528885147,[0,0, 0]],[1528885151,[0,0, 0]],[1528885155,[0,0, 0]],[1528885158,[0,0, 0]],[1528885162,[0,0, 0]],[1528885165,[0,0, 0]],[1528885169,[0,0, 0]],[1528885173,[0,0, 0]],[1528885176,[0,0, 0]],[1528885180,[0,0, 0]],[1528885183,[0,0, 0]],[1528885187,[0,0, 0]],[1528885191,[0,0, 0]],[1528885194,[0,0, 0]],[1528885198,[0,0, 0]],[1528885201,[0,0, 0]],[1528885205,[0,0, 0]],[1528885209,[0,0, 0]],[1528885212,[0,0, 0]],[1528885216,[0,0, 0]],[1528885219,[0,0, 0]],[1528885223,[0,0, 0]],[1528885227,[0,0, 0]],[1528885230,[0,0, 0]],[1528885234,[0,0, 0]],[1528885237,[0,0, 0]],[1528885241,[0,0, 0]],[1528885245,[0,0, 0]],[1528885248,[0,0, 0]],[1528885252,[0,0, 0]],[1528885255,[0,0, 0]],[1528885259,[0,0, 0]],[1528885263,[0,0, 0]],[1528885266,[0,0, 0]],[1528885270,[0,0, 0]],[1528885273,[0,0, 0]],[1528885277,[0,0, 0]],[1528885281,[0,0, 0]],[1528885284,[0,0, 0]],[1528885288,[0,0, 0]],[1528885291,[0,0, 0]],[1528885295,[0,0, 0]],[1528885299,[0,0, 0]],[1528885302,[0,0, 0]],[1528885306,[0,0, 0]],[1528885309,[0,0, 0]],[1528885313,[0,0, 0]],[1528885317,[0,0, 0]],[1528885320,[0,0, 0]],[1528885324,[0,0, 0]],[1528885327,[0,0, 0]],[1528885331,[0,0, 0]],[1528885335,[0,0, 0]],[1528885338,[0,0, 0]],[1528885342,[0,0, 0]],[1528885345,[0,0, 0]],[1528885349,[0,0, 0]],[1528885353,[0,0, 0]],[1528885356,[0,0, 0]],[1528885360,[0,0, 0]],[1528885363,[0,0, 0]],[1528885367,[0,0, 0]],[1528885371,[0,0, 0]],[1528885374,[0,0, 0]],[1528885378,[0,0, 0]],[1528885381,[0,0, 0]],[1528885385,[0,0, 0]],[1528885389,[0,0, 0]],[1528885392,[0,0, 0]],[1528885396,[0,0, 0]],[1528885399,[0,0, 0]],[1528885403,[0,0, 0]],[1528885407,[0,0, 0]],[1528885410,[0,0, 0]],[1528885414,[0,0, 0]],[1528885417,[0,0, 0]],[1528885421,[0,0, 0]],[1528885425,[0,0, 0]],[1528885428,[0,0, 0]],[1528885432,[1,0, 1]],[1528885435,[1,0, 1]],[1528885439,[0,0, 0]],[1528885443,[0,0, 0]],[1528885446,[0,0, 0]],[1528885450,[0,0, 0]],[1528885453,[0,0, 0]],[1528885457,[0,0, 0]],[1528885461,[0,0, 0]],[1528885464,[0,0, 0]],[1528885468,[0,0, 0]],[1528885471,[0,0, 0]],[1528885475,[0,0, 0]],[1528885479,[0,0, 0]],[1528885482,[0,0, 0]],[1528885486,[0,0, 0]],[1528885489,[1,0, 1]],[1528885493,[1,0, 1]],[1528885497,[1,0, 1]],[1528885500,[1,0, 1]],[1528885504,[1,0, 1]],[1528885507,[1,0, 1]],[1528885511,[1,0, 1]],[1528885515,[1,0, 1]],[1528885518,[1,0, 1]],[1528885522,[1,0, 1]],[1528885525,[1,0, 1]],[1528885529,[1,0, 1]],[1528885533,[1,0, 1]],[1528885536,[0,0, 0]],[1528885540,[1,0, 1]],[1528885543,[1,0, 1]],[1528885547,[1,0, 1]],[1528885551,[1,0, 1]],[1528885554,[1,0, 1]],[1528885558,[1,0, 1]],[1528885561,[1,0, 1]],[1528885565,[1,0, 1]],[1528885569,[1,0, 1]],[1528885572,[1,0, 1]],[1528885576,[1,0, 1]],[1528885579,[1,0, 1]],[1528885583,[1,0, 1]],[1528885587,[1,0, 1]],[1528885590,[1,0, 1]],[1528885594,[1,0, 1]],[1528885597,[1,0, 1]],[1528885601,[1,0, 1]],[1528885605,[1,0, 1]],[1528885608,[1,0, 1]],[1528885612,[1,0, 1]],[1528885615,[1,0, 1]],[1528885619,[0,0, 0]],[1528885623,[1,0, 1]],[1528885626,[1,0, 1]],[1528885630,[1,0, 1]],[1528885633,[1,0, 1]],[1528885637,[1,0, 1]],[1528885641,[1,0, 1]],[1528885644,[1,0, 1]],[1528885648,[1,0, 1]],[1528885651,[1,0, 1]],[1528885655,[1,0, 1]],[1528885659,[1,0, 1]],[1528885662,[1,0, 1]],[1528885666,[1,0, 1]],[1528885669,[1,0, 1]],[1528885673,[1,0, 1]],[1528885677,[1,0, 1]],[1528885680,[1,0, 1]],[1528885684,[1,0, 1]],[1528885688,[1,0, 1]],[1528885691,[1,0, 1]],[1528885695,[1,0, 1]],[1528885698,[1,0, 1]],[1528885702,[1,0, 1]],[1528885706,[1,0, 1]],[1528885709,[1,0, 1]],[1528885713,[1,0, 1]],[1528885716,[1,0, 1]],[1528885720,[1,0, 1]],[1528885724,[1,0, 1]],[1528885727,[1,0, 1]],[1528885731,[1,0, 1]],[1528885734,[1,0, 1]],[1528885738,[1,0, 1]],[1528885742,[1,0, 1]],[1528885745,[1,0, 1]],[1528885749,[1,0, 1]],[1528885752,[1,0, 1]],[1528885756,[1,0, 1]],[1528885760,[1,0, 1]],[1528885763,[1,0, 1]],[1528885767,[1,0, 1]],[1528885770,[1,0, 1]],[1528885774,[1,0, 1]],[1528885778,[1,0, 1]],[1528885781,[1,0, 1]],[1528885785,[2,0, 2]],[1528885788,[1,0, 1]],[1528885792,[1,0, 1]],[1528885796,[1,0, 1]],[1528885799,[1,0, 1]],[1528885803,[1,0, 1]],[1528885806,[2,0, 2]],[1528885810,[1,0, 1]],[1528885814,[1,0, 1]],[1528885817,[1,0, 1]],[1528885821,[1,0, 1]],[1528885824,[1,0, 1]],[1528885828,[2,0, 2]],[1528885832,[1,0, 1]],[1528885835,[1,0, 1]],[1528885839,[1,0, 1]],[1528885842,[1,0, 1]],[1528885846,[1,0, 1]],[1528885850,[1,0, 1]],[1528885853,[1,0, 1]],[1528885857,[1,0, 1]],[1528885860,[2,0, 2]],[1528885864,[2,0, 2]],[1528885868,[2,0, 2]],[1528885871,[1,0, 1]],[1528885875,[2,0, 2]],[1528885878,[1,0, 1]],[1528885882,[2,1, 1]],[1528885886,[2,0, 2]],[1528885889,[2,0, 2]],[1528885893,[2,0, 2]],[1528885896,[2,0, 2]],[1528885900,[1,0, 1]],[1528885904,[1,0, 1]],[1528885907,[1,0, 1]],[1528885911,[1,0, 1]],[1528885914,[1,0, 1]],[1528885918,[1,0, 1]],[1528885922,[1,0, 1]],[1528885925,[1,0, 1]],[1528885929,[1,0, 1]],[1528885932,[1,0, 1]],[1528885936,[1,0, 1]],[1528885940,[1,0, 1]],[1528885943,[1,0, 1]],[1528885947,[1,0, 1]],[1528885950,[1,0, 1]],[1528885954,[1,0, 1]],[1528885958,[1,0, 1]],[1528885961,[1,0, 1]],[1528885965,[1,0, 1]],[1528885968,[1,0, 1]],[1528885972,[1,0, 1]],[1528885976,[1,0, 1]],[1528885979,[1,0, 1]],[1528885983,[1,0, 1]],[1528885986,[1,0, 1]],[1528885990,[1,0, 1]],[1528885994,[1,0, 1]],[1528885997,[1,0, 1]],[1528886001,[1,0, 1]],[1528886004,[1,0, 1]],[1528886008,[1,0, 1]],[1528886012,[1,0, 1]],[1528886015,[1,0, 1]],[1528886019,[1,0, 1]],[1528886022,[1,0, 1]],[1528886026,[1,0, 1]],[1528886030,[1,0, 1]],[1528886033,[1,0, 1]],[1528886037,[1,0, 1]],[1528886040,[1,0, 1]],[1528886044,[1,0, 1]],[1528886048,[1,0, 1]],[1528886051,[1,0, 1]],[1528886055,[1,0, 1]],[1528886058,[1,0, 1]],[1528886062,[1,0, 1]],[1528886066,[1,0, 1]],[1528886069,[1,0, 1]],[1528886073,[1,0, 1]],[1528886076,[1,0, 1]],[1528886080,[1,0, 1]],[1528886084,[1,0, 1]],[1528886087,[1,0, 1]],[1528886091,[1,0, 1]],[1528886094,[1,0, 1]],[1528886098,[1,0, 1]],[1528886102,[1,0, 1]],[1528886105,[1,0, 1]],[1528886109,[1,0, 1]],[1528886112,[1,0, 1]],[1528886116,[1,0, 1]],[1528886120,[0,0, 0]],[1528886123,[1,0, 1]],[1528886127,[1,0, 1]],[1528886130,[1,0, 1]],[1528886134,[1,0, 1]],[1528886138,[1,0, 1]],[1528886141,[1,0, 1]],[1528886145,[1,0, 1]],[1528886148,[1,0, 1]],[1528886152,[1,0, 1]],[1528886156,[1,0, 1]],[1528886159,[1,0, 1]],[1528886163,[1,0, 1]],[1528886166,[1,0, 1]],[1528886170,[1,0, 1]],[1528886174,[1,0, 1]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'container_responses',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
itemDistance: 10,
y: -285,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
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',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
series: [
{
color: '#4572A7',
name: 'All',
data: container_responses[0],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
},
{
color: '#FF0000',
name: 'KO',
data: container_responses[1],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
{
color: '#A0B228',
name: 'OK',
data: container_responses[2],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
allUsersData,
{
type: 'pie',
name: 'Distribution',
data: [
{name: 'OK', y: 201.0, color: '#A0B228'},{name: 'KO', y: 1.0, color: '#FF0000'}
],
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'
},
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' }
},
tooltip: {
formatter: function() {
return ''+ this.y +' ms at ' + this.x + ' allreq/s';
}
},
legend: {
layout: 'vertical',
align: 'left',
verticalAlign: 'top',
x: 80,
y: 10,
floating: true,
backgroundColor: '#FFFFFF',
borderWidth: 1,
borderRadius: 3,
itemStyle: {
fontWeight: "normal",
color: "#274B6D"
}
},
plotOptions: {
scatter: {
marker: {
radius: 3,
states: {
hover: {
enabled: true,
lineColor: 'rgb(100,100,100)'
}
}
},
states: {
hover: {
marker: { enabled: false }
}
}
}
},
series: [
{
type: 'scatter',
color: 'rgba(69, 114, 167, .2)',
name: 'OK',
data: [
[6,576],[6,1043],[6,548],[6,2223],[6,88],[6,999],[6,1155],[6,182],[6,962],[6,75],[6,93],[6,1236],[6,167],[6,1099],[6,110],[6,102],[6,98],[6,72],[6,114],[6,1039],[6,159],[6,102],[6,985],[6,165],[6,108],[6,1212],[6,73],[6,98],[6,120],[6,87],[6,85],[6,91],[6,92],[6,100],[6,136],[6,93],[6,169],[6,115],[6,122],[6,53],[6,1149],[6,118],[6,91],[6,111],[6,103],[6,126],[6,1017],[6,88],[6,105],[6,132],[6,966],[6,134],[6,923],[6,131],[6,111],[6,106],[6,1145],[6,112],[6,96],[6,145],[6,85],[6,81],[6,88],[6,134],[6,90],[6,68],[6,1007],[6,181],[6,128],[7,142],[7,90],[7,78],[7,102],[7,123],[7,74],[7,75],[7,138],[7,1004],[7,117],[7,1110],[7,133],[7,76],[7,99],[7,134],[7,770],[7,107],[7,83],[7,96],[7,99],[7,786],[7,2176],[7,1223],[7,1470],[7,211],[7,108],[7,348],[7,945],[7,896],[7,930],[7,100],[7,207],[7,286],[7,126],[7,135],[7,220],[7,310],[7,1055],[7,1051],[7,151],[7,809],[7,823],[7,115],[7,112],[7,133],[7,219],[7,119],[7,231],[7,833],[7,162],[7,936],[7,78],[7,1176],[7,124],[7,1338],[7,103],[7,1198],[7,1055],[7,79],[7,118],[7,256],[7,74],[7,126],[7,230],[7,994],[7,71],[7,89],[7,82],[7,130],[7,123],[7,1079],[7,894],[7,101],[7,119],[7,90],[7,108],[7,117],[7,982],[7,157],[7,126],[7,1291],[7,141],[7,119],[7,927],[7,114],[7,136],[7,156],[7,104],[7,127],[7,89],[7,131],[7,153],[7,105],[7,902],[7,124],[7,932],[7,97],[7,94],[7,1002],[7,95],[7,119],[7,166],[7,73],[7,97],[7,136],[7,117],[7,101],[7,101],[7,94],[7,61],[7,110],[7,1009],[7,934],[7,110],[7,216],[7,105],[7,80],[7,155],[7,156],[7,889],[7,144],[7,1049],[7,85],[7,850],[8,143]
]},
{
type: 'scatter',
color: 'rgba(255, 0, 0, .2)',
name: 'KO',
data: [
[6,879],[6,1039],[6,905],[6,902],[6,860],[6,978],[6,1036],[6,955],[6,944],[6,870],[6,1060],[6,1193],[6,872],[6,860],[6,925],[6,880],[6,866],[7,900],[7,961],[7,1101],[7,1049],[7,869],[7,789],[7,1273],[7,791],[7,825],[7,906],[7,953],[7,795],[7,788],[7,823],[7,1041],[7,917],[7,1193],[7,918],[7,772],[7,1047],[7,961],[7,849],[7,1124],[7,1085],[7,1170],[7,880],[7,1150],[7,992],[7,759],[7,961]
]}
]
});
scatterChart.setTitle({
text: '<span class="chart_title">Response Time against Global RPS</span>',
useHTML: true
});
});
</script>
</body>
</html>