diff options
| author | 2017-05-24 20:20:58 +0000 | |
|---|---|---|
| committer | 2017-05-24 20:21:04 +0000 | |
| commit | 131eaa7865edeead0373e339c51ce65b5f51cd15 (patch) | |
| tree | bc71b77a0a408a41a64e692591871bf9d449f12e | |
| parent | 8e3b379394479059334287493d06fbb5497696ba (diff) | |
| parent | 13dd8aca17e91cae031511c07280b908496c7109 (diff) | |
Merge "WifiMetrics: Add metrics for HAL/wificond crashes" into oc-dev
| -rw-r--r-- | proto/src/wifi.proto | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/proto/src/wifi.proto b/proto/src/wifi.proto index debb1578451a..564d1355c7a1 100644 --- a/proto/src/wifi.proto +++ b/proto/src/wifi.proto @@ -241,6 +241,20 @@ message WifiLog { // List of events repeated StaEvent sta_event_list = 52; + + // Total number of times WiFi HAL crashed. + optional int32 num_hal_crashes = 53; + + // Total number of times WiFicond crashed. + optional int32 num_wificond_crashes = 54; + + // Indicates the number of times an error was encountered in + // Wifi HAL when wifi was turned on. + optional int32 num_wifi_on_failure_due_to_hal = 55; + + // Indicates the number of times an error was encountered in + // Wificond when wifi was turned on. + optional int32 num_wifi_on_failure_due_to_wificond = 56; } // Information that gets logged for every WiFi connection. |