diff options
| author | 2019-12-20 06:55:57 -0800 | |
|---|---|---|
| committer | 2020-01-04 18:55:08 -0800 | |
| commit | 79f068c1ae287887cb9fa51880bbcd05682f6462 (patch) | |
| tree | aafb31b01640cd3800bd47683e75d4b4821f4946 | |
| parent | f7f6200c6a7b65ead1d2ff311006a5620e8a385f (diff) | |
Add lmkd atoms to lmkd log_from_module
This allows the use of generated code to log lmkd events to statsd
Bug: 145887874
Test: m
Test: flashes successfully
Test: atest android.cts.statsd.atom.UidAtomTests#testLmkKillOccurred
Change-Id: I5e3ae2a0ec18c907901353f1d943500ce12a7a55
| -rw-r--r-- | cmds/statsd/src/atoms.proto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index 19b9709e1d41..4ad7016caad4 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -126,10 +126,10 @@ message Atom { AppStartOccurred app_start_occurred = 48; AppStartCanceled app_start_canceled = 49; AppStartFullyDrawn app_start_fully_drawn = 50; - LmkKillOccurred lmk_kill_occurred = 51; + LmkKillOccurred lmk_kill_occurred = 51 [(module) = "lmkd"]; PictureInPictureStateChanged picture_in_picture_state_changed = 52; WifiMulticastLockStateChanged wifi_multicast_lock_state_changed = 53 [(module) = "wifi"]; - LmkStateChanged lmk_state_changed = 54; + LmkStateChanged lmk_state_changed = 54 [(module) = "lmkd"]; AppStartMemoryStateCaptured app_start_memory_state_captured = 55; ShutdownSequenceReported shutdown_sequence_reported = 56; BootSequenceReported boot_sequence_reported = 57; |