summaryrefslogtreecommitdiff
path: root/cmds
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2020-06-24 21:26:38 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-06-24 21:26:38 +0000
commitddd439cf9ea44c5a1c0fd174278302190a9d3a6e (patch)
treefa9655744a07e247424234f3bc2271db505e6d0a /cmds
parent955faf48f291727fe2022b4c7872e96f142100c4 (diff)
parentb0f26f32d8d59c52e2fcbf4954451a6edbeac29e (diff)
Merge "Add shard ID to statsd atom for procstats collection" into rvc-dev am: b0f26f32d8
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11971040 Change-Id: I1bf803475b106b476b6a941af975b09ad05c32ab
Diffstat (limited to 'cmds')
-rw-r--r--cmds/statsd/src/atoms.proto4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto
index a5f0ac97cebc..ca03343ddb80 100644
--- a/cmds/statsd/src/atoms.proto
+++ b/cmds/statsd/src/atoms.proto
@@ -6131,6 +6131,10 @@ message ProcessStatsAvailablePagesProto {
*/
message ProcStats {
optional ProcessStatsSectionProto proc_stats_section = 1;
+ // Data pulled from device into this is sometimes sharded across multiple atoms to work around
+ // a size limit. When this happens, this shard ID will contain an increasing 1-indexed integer
+ // with the number of this shard.
+ optional int32 shard_id = 2;
}
/**