Merge "[DO NOT MERGE]Update stats_log.proto for cts backfill" into android11-tests-dev

This commit is contained in:
Treehugger Robot
2021-08-18 06:29:25 +00:00
committed by Gerrit Code Review

View File

@@ -50,12 +50,20 @@ message StateValue {
} }
} }
message AggregatedAtomInfo {
optional Atom atom = 1;
repeated int64 elapsed_timestamp_nanos = 2;
}
message EventMetricData { message EventMetricData {
optional int64 elapsed_timestamp_nanos = 1; optional int64 elapsed_timestamp_nanos = 1;
optional Atom atom = 2; optional Atom atom = 2;
optional int64 wall_clock_timestamp_nanos = 3 [deprecated = true]; optional int64 wall_clock_timestamp_nanos = 3 [deprecated = true];
optional AggregatedAtomInfo aggregated_atom_info = 4;
} }
message CountBucketInfo { message CountBucketInfo {
@@ -176,6 +184,8 @@ message GaugeBucketInfo {
optional int64 start_bucket_elapsed_millis = 7; optional int64 start_bucket_elapsed_millis = 7;
optional int64 end_bucket_elapsed_millis = 8; optional int64 end_bucket_elapsed_millis = 8;
repeated AggregatedAtomInfo aggregated_atom_info = 9;
} }
message GaugeMetricData { message GaugeMetricData {