aboutsummaryrefslogtreecommitdiff
path: root/host/commands/metrics/proto/clientanalytics.proto
diff options
context:
space:
mode:
Diffstat (limited to 'host/commands/metrics/proto/clientanalytics.proto')
-rw-r--r--host/commands/metrics/proto/clientanalytics.proto21
1 files changed, 0 insertions, 21 deletions
diff --git a/host/commands/metrics/proto/clientanalytics.proto b/host/commands/metrics/proto/clientanalytics.proto
deleted file mode 100644
index 955a15c0b..000000000
--- a/host/commands/metrics/proto/clientanalytics.proto
+++ /dev/null
@@ -1,21 +0,0 @@
-syntax = "proto2";
-
-message LogRequest {
- optional ClientInfo client_info = 1;
- optional int32 log_source = 2;
- optional int64 request_time_ms = 4;
- repeated LogEvent log_event = 3;
-}
-
-message ClientInfo {
- optional int32 client_type = 1;
-}
-
-message LogResponse {
- optional int64 next_request_wait_millis = 1;
-}
-
-message LogEvent {
- optional int64 event_time_ms = 1;
- optional bytes source_extension = 6;
-}