lib/streamaggr: remove unused fields

This commit is contained in:
Aliaksandr Valialkin 2023-01-04 08:19:21 -08:00
parent 23473de81e
commit ccec8c26ed
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1
2 changed files with 1 additions and 3 deletions

View file

@ -12,8 +12,7 @@ import (
type histogramBucketAggrState struct { type histogramBucketAggrState struct {
m sync.Map m sync.Map
ignoreInputDeadline uint64 intervalSecs uint64
intervalSecs uint64
} }
type histogramBucketStateValue struct { type histogramBucketStateValue struct {

View file

@ -19,7 +19,6 @@ type increaseStateValue struct {
mu sync.Mutex mu sync.Mutex
lastValues map[string]*lastValueState lastValues map[string]*lastValueState
total float64 total float64
increase float64
deleteDeadline uint64 deleteDeadline uint64
deleted bool deleted bool
} }