summaryrefslogtreecommitdiff
path: root/cmds
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2020-06-24 21:22:27 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-06-24 21:22:27 +0000
commitb0f26f32d8d59c52e2fcbf4954451a6edbeac29e (patch)
tree8408f3e2127d42f0481d272038cb0325290e33cf /cmds
parentcae0a5b56a49c9d76f201acfd92a1c275575224a (diff)
parent78c3f99268311b248bb30feeb344a4f5d2a7a607 (diff)
Merge "Add shard ID to statsd atom for procstats collection" into rvc-dev
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;
}
/**