Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 01554634 authored by David Su's avatar David Su Committed by android-build-merger
Browse files

Merge "Merge "wifi.proto: Count number of probes triggered by experiments"...

Merge "Merge "wifi.proto: Count number of probes triggered by experiments" into qt-dev am: cf263d95" into qt-dev-plus-aosp
am: 0ed52c02

Change-Id: I1f6f543cb34c8e50a809bfc30126b171cc9161dc
parents dacd5056 0ed52c02
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -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