diff options
Diffstat (limited to 'proto')
-rw-r--r-- | proto/src/gnss.proto | 21 | ||||
-rw-r--r-- | proto/src/metrics_constants/metrics_constants.proto | 12 | ||||
-rw-r--r-- | proto/src/wifi.proto | 19 |
3 files changed, 52 insertions, 0 deletions
diff --git a/proto/src/gnss.proto b/proto/src/gnss.proto index 1509fc00fb1d..33dbb26c3958 100644 --- a/proto/src/gnss.proto +++ b/proto/src/gnss.proto @@ -48,6 +48,27 @@ message GnssLog { // Hardware revision (EVT, DVT, PVT etc.) optional string hardware_revision = 13; + + // Total number of sv status messages processed + optional int32 num_sv_status_processed = 14; + + // Total number of L5 sv status messages processed + optional int32 num_l5_sv_status_processed = 15; + + // Total number of sv status messages processed, where sv is used in fix + optional int32 num_sv_status_used_in_fix = 16; + + // Total number of L5 sv status messages processed, where sv is used in fix + optional int32 num_l5_sv_status_used_in_fix = 17; + + // Number of l5 top 4 average CN0 processed + optional int32 num_l5_top_four_average_cn0_processed = 18; + + // Mean of l5 top 4 average CN0 (dB-Hz) + optional double mean_l5_top_four_average_cn0_db_hz = 19; + + // Standard deviation of l5 top 4 average CN0 (dB-Hz) + optional double standard_deviation_l5_top_four_average_cn0_db_hz = 20; } // Power metrics diff --git a/proto/src/metrics_constants/metrics_constants.proto b/proto/src/metrics_constants/metrics_constants.proto index 5a4892c75d9e..38154cb2a2bf 100644 --- a/proto/src/metrics_constants/metrics_constants.proto +++ b/proto/src/metrics_constants/metrics_constants.proto @@ -7414,6 +7414,18 @@ message MetricsEvent { // Note: Gear icon is shown next to gesture navigation preference and opens sensitivity dialog SETTINGS_GESTURE_NAV_BACK_SENSITIVITY_DLG = 1748; + + + // ACTION: Chooser > User taps a system-provided target such as copy + // SUBTYPE: Index of target + // CATEGORY: GLOBAL_SYSTEM_UI + // OS: Q - QPR1 + ACTION_ACTIVITY_CHOOSER_PICKED_SYSTEM_TARGET = 1749; + + // OPEN: Settings > System > Aware > Aware Display + // CATEGORY: SETTINGS + // OS: Q + SETTINGS_AWARE_DISPLAY = 1750; // ---- End Q Constants, all Q constants go above this line ---- // Add new aosp constants above this line. // END OF AOSP CONSTANTS diff --git a/proto/src/wifi.proto b/proto/src/wifi.proto index 8ad24894a1b9..353a18756ca2 100644 --- a/proto/src/wifi.proto +++ b/proto/src/wifi.proto @@ -1792,6 +1792,25 @@ message ExperimentValues { // Indicates if we are logging LinkSpeedCount in metrics optional bool link_speed_counts_logging_enabled = 4; + + // Duration for evaluating Wifi condition to trigger a data stall + // measured in milliseconds + optional int32 data_stall_duration_ms = 5; + + // Threshold of Tx throughput below which to trigger a data stall + // measured in Mbps + optional int32 data_stall_tx_tput_thr_mbps = 6; + + // Threshold of Rx throughput below which to trigger a data stall + // measured in Mbps + optional int32 data_stall_rx_tput_thr_mbps = 7; + + // Threshold of Tx packet error rate above which to trigger a data stall + // in percentage + optional int32 data_stall_tx_per_thr = 8; + + // Threshold of CCA level above which to trigger a data stall in percentage + optional int32 data_stall_cca_level_thr = 9; } message WifiIsUnusableEvent { |