| Commit-Queue | +1 |
Hey Dominic, I'd like your opinion on this:
Today I was asked why don't we log `Autofill.FieldFillingStats.PostalAddress`, and it turns out that whoever added the logic did correctly log the non-compact one but forgot to log the compact one (which is used a lot in experiments).
Given that this could be causing confusion, I'm proposing to just remove the non-compact version. WDYT?
---
A roughly similar argument can be made about `FieldFilling[Complex]Score` in case you agree we should remove this.
postal_address_field_stats);... so I added it here.
<variant name="PostalAddress"/>This existed but was never logged...
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
... so I added it here.
Acknowledged
This existed but was never logged...
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
Hey Dominic, I'd like your opinion on this:
- We have two kinds of `FieldFillingStats` metrics: One that tells us for each form type how many fields in total in the web were submitted with some status status (Accepted, Edited, etc.) (Split only by form type), and another that tells us for each form type and each status (Accepted, Edited, etc.), how many fields were submitted with that status per single form submission (Split by form type and status).
- The second one seems not useful because we don't have the baseline of how many fields did the submitted form contain in total so I'm not sure what the absolute number is telling us (something that the first generic metric doesn't tell us)
- I have yet to see a case/experiment where we looked at the non-compact one and not the compact one.
Today I was asked why don't we log `Autofill.FieldFillingStats.PostalAddress`, and it turns out that whoever added the logic did correctly log the non-compact one but forgot to log the compact one (which is used a lot in experiments).
Given that this could be causing confusion, I'm proposing to just remove the non-compact version. WDYT?
---
A roughly similar argument can be made about `FieldFilling[Complex]Score` in case you agree we should remove this.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Remove non-compact field filling stats metrics
This CL:
- Removes Autofill.FieldFillingStats.{FormType}.{Stat} metrics.
- Renames LogCompactFieldFillingStats to LogFieldFillingStats.
- Adds a missing logging call to log the stats of postal address forms.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |