Add package_name to text classifier related events.
It was missing in the last CL, we would like to log the source package.
Bug: 124437773
Test: m
Change-Id: I53d8813e2e06a56a589bc7c261cfcdc2d70018d5
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto
index 35c4ceb..7b83d85 100644
--- a/cmds/statsd/src/atoms.proto
+++ b/cmds/statsd/src/atoms.proto
@@ -6872,6 +6872,9 @@
// Relative word (exclusive) index of the end of the smart selection.
optional int32 relative_suggested_word_end_index = 10;
+
+ // Name of source package.
+ optional string package_name = 11;
}
/**
@@ -6909,6 +6912,9 @@
// Time spent on generating links in ms.
optional int64 latency_millis = 10;
+
+ // Name of source package.
+ optional string package_name = 11;
}
/**
@@ -6940,6 +6946,9 @@
// The score of the first entity type.
optional float score = 8;
+
+ // Name of source package.
+ optional string package_name = 9;
}
/**
@@ -6968,4 +6977,7 @@
// Position of this action.
optional int32 action_index = 7;
+
+ // Name of source package.
+ optional string package_name = 8;
}