Google is overloading user timings see #257
This commit is contained in:
parent
333319d786
commit
12a4eb30be
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue