Add an atom to log TextClassifier API latency and result

Bug: 169042373

Test: m TextClassifierService

Change-Id: If37cfefbc0e0714acc698ecb3bbd54a51b052e28
This commit is contained in:
Tony Mak
2020-10-27 18:25:55 +00:00
parent 1086c93f77
commit 7a22ac4576

View File

@@ -501,6 +501,7 @@ message Atom {
DataStallRecoveryReported data_stall_recovery_reported = 315 [(module) = "telephony"]; DataStallRecoveryReported data_stall_recovery_reported = 315 [(module) = "telephony"];
MediametricsMediaParserReported mediametrics_mediaparser_reported = 316; MediametricsMediaParserReported mediametrics_mediaparser_reported = 316;
TlsHandshakeReported tls_handshake_reported = 317 [(module) = "conscrypt"]; TlsHandshakeReported tls_handshake_reported = 317 [(module) = "conscrypt"];
TextClassifierApiUsageReported text_classifier_api_usage_reported = 318 [(module) = "textclassifier"];
// StatsdStats tracks platform atoms with ids upto 500. // StatsdStats tracks platform atoms with ids upto 500.
// Update StatsdStats::kMaxPushedAtomId when atom ids here approach that value. // Update StatsdStats::kMaxPushedAtomId when atom ids here approach that value.
@@ -11977,3 +11978,29 @@ message TlsHandshakeReported {
optional int32 handshake_duration_millis = 4; optional int32 handshake_duration_millis = 4;
} }
/**
* Logs when a TextClassifier API is invoked.
*
* See frameworks/base/core/java/android/view/textclassifier/TextClassifier.java
* Logged from: external/libtextclassifier/java/
*/
message TextClassifierApiUsageReported {
enum ApiType {
UNKNOWN_API = 0;
SUGGEST_SELECTION = 1;
CLASSIFY_TEXT = 2;
GENERATE_LINKS = 3;
DETECT_LANGUAGES = 4;
SUGGEST_CONVERSATION_ACTIONS = 5;
}
optional ApiType api_type = 1;
enum ResultType {
UNKNOWN_RESULT = 0;
SUCCESS = 1;
FAIL = 2;
}
optional ResultType result_type = 2;
optional int64 latency_millis = 3;
}