We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 774cbb8 commit 73e9d96Copy full SHA for 73e9d96
sdk/metric/internal/aggregate/exponential_histogram.go
@@ -29,9 +29,6 @@ const (
29
30
// expoHistogramDataPoint is a single data point in an exponential histogram.
31
type expoHistogramDataPoint[N int64 | float64] struct {
32
- attrs attribute.Set
33
- res FilteredExemplarReservoir[N]
34
-
35
count uint64
36
min N
37
max N
@@ -46,6 +43,9 @@ type expoHistogramDataPoint[N int64 | float64] struct {
46
43
posBuckets expoBuckets
47
44
negBuckets expoBuckets
48
45
zeroCount uint64
+
+ attrs attribute.Set
+ res FilteredExemplarReservoir[N]
49
}
50
51
func newExpoHistogramDataPoint[N int64 | float64](
0 commit comments