Google is overloading user timings see #257

This commit is contained in:
soulgalore 2017-01-13 08:38:06 +01:00
parent 333319d786
commit 12a4eb30be
1 changed files with 7 additions and 0 deletions

View File

@ -45,6 +45,13 @@ module.exports = {
if (keyPrefix.match(/(screenshots\.|har\.)/)) {
return;
}
// Google is overloading User Timing marks
// See https://github.com/sitespeedio/browsertime/issues/257
if (keyPrefix.indexOf('userTimings.marks.goog_') > -1) {
return;
}
const valueType = typeof value;
switch (valueType) {