Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc(proto): add audit_mode and timings #6363

Merged
merged 4 commits into from
Oct 23, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions proto/lighthouse-result.proto
Original file line number Diff line number Diff line change
Expand Up @@ -206,13 +206,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