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

Commit cb8f3628 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add a wrapper ConfigMetricReportList to hold multiple ConfigMetricReports"

parents 2ffa7f0d 24904b84
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -158,13 +158,17 @@ message StatsLogReport {
}

message ConfigMetricsReport {
  repeated StatsLogReport metrics = 1;

  optional UidMapping uid_map = 2;
}

message ConfigMetricsReportList {
  message ConfigKey {
    optional int32 uid = 1;
    optional string name = 2;
  }
  optional ConfigKey config_key = 1;

  repeated StatsLogReport metrics = 2;

  optional UidMapping uid_map = 3;
  repeated ConfigMetricsReport reports = 2;
}