-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqualitymeter_template.jade
More file actions
220 lines (201 loc) · 6.3 KB
/
qualitymeter_template.jade
File metadata and controls
220 lines (201 loc) · 6.3 KB
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
doctype html
html
title qualitymeter
meta(charset="utf-8")
meta(name="viewport" content="width=device-width, initial-scale=1")
head
link(href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css", rel="stylesheet", integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u", crossorigin="anonymous")
style.
body{
background-color: #eee
}
h1{
margin-bottom: 2em
color: rgba(0, 0, 0, 0.4)
}
h1>span{
color: #4aa2a2
}
body
.container-fluid
h1.text-center quality
span meter
.container
.charts
.row
br/
h2.text-center Metric Charts per URL
.row#metrics
script(src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous")
script(src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js", integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa", crossorigin="anonymous")
script(src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.6/Chart.min.js")
script.
var data = !{JSON.stringify(data)};
var metricChartCount = 0;
var resourceSizeChartCount = 0;
var resourceSpeedChartCount = 0;
//Metrics charts - 5 per url
Object.keys(data).forEach(function(key){
var _results = data[key];
$('#metrics').append('<div class="col-md-12" ><canvas width="400" height="200" id=metricChart'+metricChartCount+'></canvas></div>');
var metricCtx = $("#metricChart"+metricChartCount);
var metricsLineGraph = new Chart(metricCtx, {
type: 'line',
data: getMetricsData(_results),
options: {
title: {
display: true,
text: 'Overall Site Metrics - '+key
},
scales: {
yAxes: [{
scaleLabel: {
display: true,
labelString: 'ms'
}
}]
}
}
});
$('#metrics').append('<div class="col-md-12" ><canvas width="400" height="200" id=elementCount'+metricChartCount+'></canvas></div>');
var countCtx = $("#elementCount"+metricChartCount);
var countLineGraph = new Chart(countCtx, {
type: 'line',
data: {
labels:_results.map(function(a) {return a.startTime;}),
datasets:[
{
label: 'Page elements',
fill: true,
lineTension: 0.1,
backgroundColor: "rgba(75,192,192,0.2)",
borderColor: "rgba(75,192,192,1)",
borderCapStyle: 'butt',
borderDash: [],
borderDashOffset: 0.0,
borderJoinStyle: 'miter',
pointBorderColor: "rgba(75,192,192,1)",
pointBackgroundColor: "#fff",
pointBorderWidth: 1,
pointHoverRadius: 5,
pointHoverBackgroundColor: "rgba(75,192,192,1)",
pointHoverBorderColor: "rgba(220,220,220,1)",
pointHoverBorderWidth: 1,
pointRadius: 1,
pointHitRadius: 10,
data: _results.map(function(a) {return a["metrics.DOMelementsCount"];}),
spanGaps: false,
borderWidth:1
}
]
},
options: {
title: {
display: true,
text: 'Total page elements - '+key
}
}
});
metricChartCount++;
});
function getMetricsData(data){
var _data = data;
var metricData = {
labels: _data.map(function(a) {return a.startTime;}),
datasets: [
{
label: 'First http response',
fill: false,
lineTension: 0.1,
backgroundColor: "rgba(75,192,192,0.4)",
borderColor: "rgba(75,192,192,1)",
borderCapStyle: 'butt',
borderDash: [],
borderDashOffset: 0.0,
borderJoinStyle: 'miter',
pointBorderColor: "rgba(75,192,192,1)",
pointBackgroundColor: "#fff",
pointBorderWidth: 1,
pointHoverRadius: 5,
pointHoverBackgroundColor: "rgba(75,192,192,1)",
pointHoverBorderColor: "rgba(220,220,220,1)",
pointHoverBorderWidth: 1,
pointRadius: 1,
pointHitRadius: 10,
data: _data.map(function(a) {return a["metrics.timeToFirstByte"];}),
spanGaps: false,
borderWidth:1
},
{
label: 'Time for page model constructed',
fill: false,
lineTension: 0.1,
backgroundColor: "rgba(255, 99, 132, 0.4)",
borderColor: "rgba(255,99,132,1)",
borderCapStyle: 'butt',
borderDash: [],
borderDashOffset: 0.0,
borderJoinStyle: 'miter',
pointBorderColor: "rgba(255,99,132,1)",
pointBackgroundColor: "#fff",
pointBorderWidth: 1,
pointHoverRadius: 5,
pointHoverBackgroundColor: "rgba(255,99,132,1)",
pointHoverBorderColor: "rgba(220,220,220,1)",
pointHoverBorderWidth: 1,
pointRadius: 1,
pointHitRadius: 10,
data: _data.map(function(a) {return a["metrics.domInteractive"];}),
borderWidth:1,
spanGaps: false
},
{
label: 'Page Loading Time',
fill: false,
lineTension: 0.1,
backgroundColor: "rgba(255, 206, 86, 0.4)",
borderColor: "rgba(255, 206, 86, 1)",
borderCapStyle: 'butt',
borderDash: [],
borderDashOffset: 0.0,
borderJoinStyle: 'miter',
pointBorderColor: "rgba(255, 206, 86, 1)",
pointBackgroundColor: "#fff",
pointBorderWidth: 1,
pointHoverRadius: 5,
pointHoverBackgroundColor: "rgba(255, 206, 86, 1)",
pointHoverBorderColor: "rgba(220,220,220,1)",
pointHoverBorderWidth: 1,
pointRadius: 1,
pointHitRadius: 10,
data: _data.map(function(a) {return a["metrics.domComplete"];}),
borderWidth:1,
spanGaps: false
},
{
label: 'Total Loading Time',
fill: false,
lineTension: 0.1,
backgroundColor: "rgba(255, 159, 64, 0.4)",
borderColor: "rgba(255, 159, 64, 1)",
borderCapStyle: 'butt',
borderDash: [],
borderDashOffset: 0.0,
borderJoinStyle: 'miter',
pointBorderColor: "rgba(255, 159, 64, 1)",
pointBackgroundColor: "#fff",
pointBorderWidth: 1,
pointHoverRadius: 5,
pointHoverBackgroundColor: "rgba(255, 159, 64, 1)",
pointHoverBorderColor: "rgba(220,220,220,1)",
pointHoverBorderWidth: 1,
pointRadius: 1,
pointHitRadius: 10,
data: _data.map(function(a) {return a["total_load_time"];}),
borderWidth:1,
spanGaps: false
}
]
};
return metricData
}