1express_metric { 2 # naming convention is: 3 # - consists of 2 groups: 4 # - domain - will be used as metric config file name 5 # - value metric name without bucket size 6 # - groups separated by dot '.' 7 id: "tex_test.value_telemetry_express_test_counter" 8 type: COUNTER 9 display_name: "Test express counter metric" 10 description: "Longer test express counter metric description" 11 owner_email: "sharaienko@google.com" 12 owner_email: "yanmin@google.com" 13 unit: UNIT_COUNT 14} 15 16express_metric { 17 id: "tex_test.value_telemetry_express_fixed_range_histogram" 18 type: HISTOGRAM 19 display_name: "Test express fixed_range counter histogram metric" 20 description: "Longer test express counter histogram metric description" 21 owner_email: "sharaienko@google.com" 22 owner_email: "yanmin@google.com" 23 unit: UNIT_COUNT 24 histogram_options { 25 uniform_bins { 26 count: 50 27 min: 1 28 max: 1000000 29 } 30 } 31} 32 33express_metric { 34 id: "tex_test.value_telemetry_express_scaled_factor_histogram" 35 type: HISTOGRAM 36 display_name: "Test express scaled_factor counter histogram metric" 37 description: "Longer test express counter histogram metric description" 38 owner_email: "sharaienko@google.com" 39 owner_email: "yanmin@google.com" 40 unit: UNIT_COUNT 41 histogram_options { 42 scaled_bins { 43 count: 20 44 min_value: 1 45 first_bin_width: 10 46 scale: 1.6 47 } 48 } 49} 50 51express_metric { 52 id: "tex_test.value_telemetry_express_fixed_range_histogram_with_uid" 53 type: HISTOGRAM_WITH_UID 54 display_name: "Test express fixed_range counter histogram with UID metric" 55 description: "Longer test express counter histogram with UID metric description" 56 owner_email: "sharaienko@google.com" 57 owner_email: "alexbkv@google.com" 58 unit: UNIT_COUNT 59 histogram_options { 60 uniform_bins { 61 count: 50 62 min: 1 63 max: 1000000 64 } 65 } 66} 67 68express_metric { 69 id: "tex_test.value_telemetry_express_test_counter_with_uid" 70 type: COUNTER_WITH_UID 71 display_name: "Test express counter metric with uid" 72 description: "Longer test express counter metric description" 73 owner_email: "sharaienko@google.com" 74 owner_email: "yanmin@google.com" 75 unit: UNIT_COUNT 76} 77 78express_metric { 79 id: "tex_test.value_telemetry_express_scaled_range_histogram_with_uid" 80 type: HISTOGRAM_WITH_UID 81 display_name: "Test express scaled_range counter histogram with UID metric" 82 description: "Longer test express counter histogram with UID metric description" 83 owner_email: "sharaienko@google.com" 84 unit: UNIT_COUNT 85 histogram_options { 86 scaled_bins { 87 count: 20 88 min_value: 1 89 first_bin_width: 10 90 scale: 1.6 91 } 92 } 93} 94