diff options
author | arangelov <arangelov@google.com> | 2019-10-14 17:54:42 +0100 |
---|---|---|
committer | arangelov <arangelov@google.com> | 2019-10-14 17:57:10 +0100 |
commit | 49e32af6878045957ddc9b93856a47964f20acf2 (patch) | |
tree | 053414bb2538acfc9d03d2136514dc92a654608e /proto | |
parent | 3261dacd655bcc47577fef0965dc3e2d1cbf9cab (diff) |
Deprecate unused metrics
PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS
PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS
PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS
These metrics are meant to measure intermediate screens, e.g.
screens which finish() in onCreate. It does not make sense to
measure the time they have been shown.
Test: compiled
Fixes: 135599174
Change-Id: I14d4f0b9fb5d70cfaeb386eb14348c0cc499113a
Diffstat (limited to 'proto')
-rw-r--r-- | proto/src/metrics_constants/metrics_constants.proto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proto/src/metrics_constants/metrics_constants.proto b/proto/src/metrics_constants/metrics_constants.proto index 5b826b1c551b..b0e401bdda8a 100644 --- a/proto/src/metrics_constants/metrics_constants.proto +++ b/proto/src/metrics_constants/metrics_constants.proto @@ -2584,15 +2584,15 @@ message MetricsEvent { // ACTION: Logged when trampoline activity finishes. // TIME: Indicates total time taken by trampoline activity to finish in MS. - PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523; + PROVISIONING_TRAMPOLINE_ACTIVITY_TIME_MS = 523 [deprecated=true]; // ACTION: Logged when encryption activity finishes. // TIME: Indicates total time taken by post encryption activity to finish in MS. - PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524; + PROVISIONING_POST_ENCRYPTION_ACTIVITY_TIME_MS = 524 [deprecated=true]; // ACTION: Logged when finalization activity finishes. // TIME: Indicates time taken by finalization activity to finish in MS. - PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525; + PROVISIONING_FINALIZATION_ACTIVITY_TIME_MS = 525 [deprecated=true]; // OPEN: Settings Support > Phone/Chat -> Disclaimer DIALOG_SUPPORT_DISCLAIMER = 526; |