Skip to content

Commit 0a20e5c

Browse files
committed
fix alignment
1 parent 83c1e07 commit 0a20e5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sdk/metric/internal/aggregate/exponential_histogram.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ const (
2929

3030
// expoHistogramDataPoint is a single data point in an exponential histogram.
3131
type expoHistogramDataPoint[N int64 | float64] struct {
32-
attrs attribute.Set
33-
res FilteredExemplarReservoir[N]
34-
3532
count uint64
3633
min N
3734
max N
@@ -46,6 +43,9 @@ type expoHistogramDataPoint[N int64 | float64] struct {
4643
posBuckets expoBuckets
4744
negBuckets expoBuckets
4845
zeroCount uint64
46+
47+
attrs attribute.Set
48+
res FilteredExemplarReservoir[N]
4949
}
5050

5151
func newExpoHistogramDataPoint[N int64 | float64](

0 commit comments

Comments
 (0)