pickup other wpt data
This commit is contained in:
parent
2e0456300d
commit
261516d002
|
|
@ -186,6 +186,22 @@ function collectWPT(pageData, p) {
|
|||
'v': pageData.webpagetest.response.data.median.firstView.SpeedIndex,
|
||||
'unit': ''
|
||||
};
|
||||
|
||||
p.wpt.imageSavings = {
|
||||
'v': pageData.webpagetest.response.data.median.firstView.image_savings,
|
||||
'unit': 'bytes'
|
||||
};
|
||||
|
||||
p.wpt.imageTotal = {
|
||||
'v': pageData.webpagetest.response.data.median.firstView.image_total,
|
||||
'unit': 'bytes'
|
||||
};
|
||||
|
||||
p.wpt.firstViewFirstPaint = {
|
||||
'v': pageData.webpagetest.response.data.median.firstView.firstPaint,
|
||||
'unit': 'milliseconds'
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
function collectBrowserTime(pageData, p) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue