1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2026-06-03 18:35:08 +02:00

Uppercase

This commit is contained in:
jmacd
2020-06-10 00:53:31 -07:00
parent e3c9929313
commit 8b58f4f48e
+7 -7
View File
@@ -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 (