From 77df163a5311196a19130439d8b1a2d467dbad2d Mon Sep 17 00:00:00 2001 From: Tigran Najaryan <4194920+tigrannajaryan@users.noreply.github.com> Date: Tue, 9 May 2023 18:00:30 -0400 Subject: [PATCH] Update opentelemetry/proto/metrics/v1/metrics.proto Fix field name Co-authored-by: Bogdan Drutu --- opentelemetry/proto/metrics/v1/metrics.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opentelemetry/proto/metrics/v1/metrics.proto b/opentelemetry/proto/metrics/v1/metrics.proto index 31f801e28..14bfbba24 100644 --- a/opentelemetry/proto/metrics/v1/metrics.proto +++ b/opentelemetry/proto/metrics/v1/metrics.proto @@ -536,8 +536,8 @@ message ExponentialHistogramDataPoint { // Note: This uses a varint encoding as a simple form of compression. sint32 offset = 1; - // BucketCounts is an array of count values, where BucketCounts[i] carries - // the count of the bucket at index (offset+i). BucketCounts[i] is the count + // bucket_counts is an array of count values, where bucket_counts[i] carries + // the count of the bucket at index (offset+i). bucket_counts[i] is the count // of values greater than base^(offset+i) and less than or equal to // base^(offset+i+1). //