diff options
| author | 2017-07-12 17:44:25 +0000 | |
|---|---|---|
| committer | 2017-07-12 17:44:25 +0000 | |
| commit | b07f49dd920f88e809c6aa571cf62050b1dab3c5 (patch) | |
| tree | 4acacd00fd1322dd38726563a12a52c6811b759f | |
| parent | bcc318f9cf6a82fb30ae050426645130afc8461e (diff) | |
| parent | 8424315ec37977f9e3a9331f59301414d89802b0 (diff) | |
Merge "WifiMetrics: add Passpoint related metrics" into oc-dr1-dev
| -rw-r--r-- | proto/src/wifi.proto | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/proto/src/wifi.proto b/proto/src/wifi.proto index fbb1a5753ae0..28e342738172 100644 --- a/proto/src/wifi.proto +++ b/proto/src/wifi.proto @@ -258,6 +258,24 @@ message WifiLog { // Wi-Fi Aware metrics optional WifiAwareLog wifi_aware_log = 57; + + // Number of saved Passpoint providers in user profile. + optional int32 num_passpoint_providers = 58; + + // Count of times Passpoint provider being installed. + optional int32 num_passpoint_provider_installation = 59; + + // Count of times Passpoint provivider is installed successfully. + optional int32 num_passpoint_provider_install_success = 60; + + // Count of times Passpoint provider is being uninstalled. + optional int32 num_passpoint_provider_uninstallation = 61; + + // Count of times Passpoint provider is uninstalled successfully. + optional int32 num_passpoint_provider_uninstall_success = 62; + + // Count of saved Passpoint providers device has ever connected to. + optional int32 num_passpoint_providers_successfully_connected = 63; } // Information that gets logged for every WiFi connection. |