From 729d267cc6534d8ae5d43b25e50a52074cad7164 Mon Sep 17 00:00:00 2001 From: Chiachang Wang Date: Wed, 27 Mar 2019 17:33:52 +0800 Subject: [PATCH] Align proto naming with server configuration Update naming as server requirement. Bug: 128887306 Test: build Change-Id: Iae46b1e41a66b1ad7d0c166ac52d5442b0c4070d --- cmds/statsd/src/atoms.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index 9ab7c215d82d8..564e9186b8681 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -3061,7 +3061,9 @@ message ProcessStartTime { * frameworks/base/packages/NetworkStack/ */ message NetworkStackReported { - optional int32 eventId = 1; + // The id that indicates the event reported from NetworkStack. + optional int32 event_id = 1; + // The data for the reported events. optional android.stats.connectivity.NetworkStackEventData network_stack_event = 2 [(log_mode) = MODE_BYTES]; }