diff options
author | Kai Shi <kaishi@google.com> | 2019-07-25 14:18:34 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-07-25 14:18:34 -0700 |
commit | e7ea38b73dbdd5a543bad1ac4cf37c057495b5d8 (patch) | |
tree | b83fa54958d337891ecd88273b4ac1955bd7fb61 /proto/src | |
parent | a0b4b173f40d6c0e498643bed27c8edff2fb9010 (diff) | |
parent | 4b8e648da6717b8a735a59679c6f7d594322f20e (diff) |
Merge "WifiMetrics: add per-band Tx and Rx speed histogram" into qt-r1-dev am: 6564df6264 am: e6fb43cff3
am: 4b8e648da6
Change-Id: I94f28a860e18d80be6c5dc5db677aa17af5b2c73
Diffstat (limited to 'proto/src')
-rw-r--r-- | proto/src/wifi.proto | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/proto/src/wifi.proto b/proto/src/wifi.proto index f9a2ca269335..8ad24894a1b9 100644 --- a/proto/src/wifi.proto +++ b/proto/src/wifi.proto @@ -551,6 +551,30 @@ message WifiLog { // Histogram of the EAP method type of all installed Passpoint profiles for R2 repeated PasspointProfileTypeCount installed_passpoint_profile_type_for_r2 = 148; + + // Histogram of Tx link speed at 2G + repeated Int32Count tx_link_speed_count_2g = 149; + + // Histogram of Tx link speed at 5G low band + repeated Int32Count tx_link_speed_count_5g_low = 150; + + // Histogram of Tx link speed at 5G middle band + repeated Int32Count tx_link_speed_count_5g_mid = 151; + + // Histogram of Tx link speed at 5G high band + repeated Int32Count tx_link_speed_count_5g_high = 152; + + // Histogram of Rx link speed at 2G + repeated Int32Count rx_link_speed_count_2g = 153; + + // Histogram of Rx link speed at 5G low band + repeated Int32Count rx_link_speed_count_5g_low = 154; + + // Histogram of Rx link speed at 5G middle band + repeated Int32Count rx_link_speed_count_5g_mid = 155; + + // Histogram of Rx link speed at 5G high band + repeated Int32Count rx_link_speed_count_5g_high = 156; } // Information that gets logged for every WiFi connection. @@ -827,6 +851,7 @@ message LinkSpeedCount { optional int64 rssi_sum_of_squares_dbm_sq = 4; } + // Number of occurrences of Soft AP session durations message SoftApDurationBucket { // Bucket covers duration : [duration_sec, duration_sec + bucket_size_sec) |