diff options
author | Mingguang Xu <mingguangxu@google.com> | 2019-09-18 11:44:32 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-09-18 11:44:32 -0700 |
commit | 12a8212d5b62a3cf176be5193630e9ae74fbf76e (patch) | |
tree | 338d4390b54c6b85e157e797dd7bc760d873b33d /proto | |
parent | 1066fe8632a7193eb5ca56485ec94442237cca1b (diff) | |
parent | d65f8c6704049a64ac14ccf282f8616430f9ad49 (diff) |
Merge "Wifi usability: Data stall detection based on link layer stats" into qt-qpr1-dev
am: d65f8c6704
Change-Id: I31776ebb6951059b4b0b6dd4e9ad2074b4c42c8e
Diffstat (limited to 'proto')
-rw-r--r-- | proto/src/wifi.proto | 19 |
1 files changed, 19 insertions, 0 deletions
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 { |