-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
core: move metric savings to audit product #15074
Conversation
proto/lighthouse-result.proto
Outdated
|
||
// [EXPERIMENTAL] Estimates of how much this audit affects various performance | ||
// metrics. Values will be in the unit of the respective metrics. | ||
google.protobuf.Struct _metricSavings = 13; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is renaming this to metricSavings
going to cause issues down the line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we just not include it in the proto yet?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(otherwise it's my understanding that it'll have to ship in the proto forever, just not be populated anymore)
I didn't realize in #15071 (comment) that it wasn't on the actual audit result in the LHR, just on the intermediate audit product. Maybe the current way is the best way to land these, since we don't have to worry about them exposed in the LHR at all yet? |
Protobuf seems to be having issues with the leading We may need to remove the |
Original approach was flawed (see #15071)