1syntax = "proto3"; 2 3package com.android.adservices.shared.proto; 4option java_multiple_files = true; 5option java_package = "com.android.adservices.shared.proto"; 6 7// The id for the metric, used for log sampling. Each metric should have a unique id. 8enum MetricId { 9 UNKNOWN = 0; 10 EXAMPLE_STATS = 1; // Used by the tests 11}