diff options
author | David Su <dysu@google.com> | 2019-04-29 17:05:49 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2019-04-29 17:05:49 +0000 |
commit | cf263d9535712e152e1d3e90d7b313e105f6f1cf (patch) | |
tree | 32a0a5550993f0a945f7684786a688bff47cab14 | |
parent | 1a5d1728af14193d949614c7dbd1e3f4357cbebc (diff) | |
parent | 36da81ff8a1e493ef1baedc7e6ee9906123a8dac (diff) |
Merge "wifi.proto: Count number of probes triggered by experiments" into qt-dev
-rw-r--r-- | proto/src/wifi.proto | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/proto/src/wifi.proto b/proto/src/wifi.proto index ea044cfa75d5..f9a2ca269335 100644 --- a/proto/src/wifi.proto +++ b/proto/src/wifi.proto @@ -2418,6 +2418,15 @@ message LinkProbeStats { optional int32 count = 2; } + // Counts the number of link probes for each experiment. + message ExperimentProbeCounts { + // The experiment ID. + optional string experiment_id = 1; + + // The number of link probes triggered for this experiment. + optional int32 probe_count = 2; + } + // Counts the occurrences of RSSI values when a link probe succeeds. repeated Int32Count success_rssi_counts = 1; @@ -2441,6 +2450,9 @@ message LinkProbeStats { // Counts the occurrences of error codes for failed link probes. repeated LinkProbeFailureReasonCount failure_reason_counts = 8; + + // Counts the number of link probes for each experiment. + repeated ExperimentProbeCounts experiment_probe_counts = 9; } // Stores the decisions that were made by a experiment when compared against another experiment |