Skip to content

Commit

Permalink
Google is overloading user timings see #257
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed Jan 13, 2017
1 parent 333319d commit 12a4eb3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/support/flattenMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 12a4eb3

Please sign in to comment.