diff --git a/sdk/export/metric/aggregation/aggregation.go b/sdk/export/metric/aggregation/aggregation.go index c2ca93d33..b42a4fc13 100644 --- a/sdk/export/metric/aggregation/aggregation.go +++ b/sdk/export/metric/aggregation/aggregation.go @@ -30,7 +30,7 @@ type ( Aggregation interface { // Kind returns a short identifying string to identify // the Aggregator that was used to produce the - // Aggregation (e.g., "sum"). + // Aggregation (e.g., "Sum"). Kind() Kind } @@ -138,12 +138,12 @@ type ( ) const ( - SumKind Kind = "sum" - MinMaxSumCountKind Kind = "minmaxsumcount" - HistogramKind Kind = "histogram" - LastValueKind Kind = "lastvalue" - SketchKind Kind = "sketch" - ExactKind Kind = "exact" + SumKind Kind = "Sum" + MinMaxSumCountKind Kind = "MinMaxSumCount" + HistogramKind Kind = "Histogram" + LastValueKind Kind = "Lastvalue" + SketchKind Kind = "Sketch" + ExactKind Kind = "Exact" ) var (