1express_metric { 2 # naming convention is: 3 # - consists of 2 groups: 4 # - domain - will be used as ww config file name 5 # - ww 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: 50 44 min: 1 45 first_bin_width: 10 46 scale: 1.6 47 } 48 } 49} 50