diff options
author | hsuvictor <hsuvictor@google.com> | 2019-04-09 20:15:05 +0800 |
---|---|---|
committer | hsuvictor <hsuvictor@google.com> | 2019-04-19 11:09:55 +0800 |
commit | c0106148c6961b36274ac9b17634e7300cc6e277 (patch) | |
tree | 9a415fb64d1b1631613007c7376f4186f7cd2ffa /proto/src | |
parent | 17510161ac71e7492c3bb2e979fcfca36ade5696 (diff) |
WifiMetrics: add histogram of installed Passpoint profiles for R2
Added Histogram of the EAP method type of installed
Passpoint profiles for R2
Bug: 122542221
Test: atest WifiMetricsTest PasspointManagerTest
Change-Id: I5c09d13a284dc15f9ba08d175212ad56cf0bc244
Diffstat (limited to 'proto/src')
-rw-r--r-- | proto/src/wifi.proto | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/proto/src/wifi.proto b/proto/src/wifi.proto index 15d30e463cc3..834987cb6438 100644 --- a/proto/src/wifi.proto +++ b/proto/src/wifi.proto @@ -474,9 +474,6 @@ message WifiLog { // Number of times the SarManager failed to register SAR sensor listener optional int32 num_sar_sensor_registration_failures = 122; - // Histogram of the EAP method type of all installed Passpoint profiles - repeated PasspointProfileTypeCount installed_passpoint_profile_type = 123; - // Hardware revision (EVT, DVT, PVT etc.) optional string hardware_revision = 124; @@ -548,6 +545,12 @@ message WifiLog { // Passpoint provison metrics optional PasspointProvisionStats passpoint_provision_stats = 147; + + // Histogram of the EAP method type of all installed Passpoint profiles for R1 + repeated PasspointProfileTypeCount installed_passpoint_profile_type_for_r1 = 123; + + // Histogram of the EAP method type of all installed Passpoint profiles for R2 + repeated PasspointProfileTypeCount installed_passpoint_profile_type_for_r2 = 148; } // Information that gets logged for every WiFi connection. |