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

Commit 24904b84 authored by yro's avatar yro Committed by Howard Ro
Browse files

Add a wrapper ConfigMetricReportList to hold multiple

ConfigMetricReports

Test: statsd, statsd_test
Change-Id: Ic1ec6e5a31aebb36a1f39a4836e82d97c8be0dfc
parent 1e701008
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;
}