Skip to content

Commit

Permalink
misc(proto): add audit_mode and timings (#6363)
Browse files Browse the repository at this point in the history
  • Loading branch information
exterkamp authored and paulirish committed Oct 23, 2018
1 parent 9882514 commit 879141d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions proto/lighthouse-result.proto
Original file line number Diff line number Diff line change
Expand Up @@ -205,13 +205,25 @@ message LighthouseResult {
// List of the audits that were skipped, empty if all were run
// nullable list of strings
google.protobuf.Value skip_audits = 15;

// Flag indicating whether this Lighthouse run was audit-only
google.protobuf.BoolValue audit_mode = 16;
}

// The settings that were used to run this audit
ConfigSettings config_settings = 12;

// i18n info in version 1 message format
I18n i18n = 13;

// Message containing the performance timing data for the Lighthouse run
message Timing {
// The total duration of Lighthouse's run
google.protobuf.DoubleValue total = 1;
}

// The performance timing data for the Lighthouse run
Timing timing = 14;
}

// Message containing a category
Expand Down

0 comments on commit 879141d

Please sign in to comment.