mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 05:34:05 -08:00
commit
2fcdd1a5cb
13
head.go
13
head.go
|
@ -423,23 +423,12 @@ func (a *headAppender) Commit() error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
total := uint64(len(a.samples))
|
||||||
total = uint64(len(a.samples))
|
|
||||||
mint = int64(math.MaxInt64)
|
|
||||||
maxt = int64(math.MinInt64)
|
|
||||||
)
|
|
||||||
|
|
||||||
for _, s := range a.samples {
|
for _, s := range a.samples {
|
||||||
if !a.series[s.ref].append(s.t, s.v) {
|
if !a.series[s.ref].append(s.t, s.v) {
|
||||||
total--
|
total--
|
||||||
}
|
}
|
||||||
|
|
||||||
if s.t < mint {
|
|
||||||
mint = s.t
|
|
||||||
}
|
|
||||||
if s.t > maxt {
|
|
||||||
maxt = s.t
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a.mtx.RUnlock()
|
a.mtx.RUnlock()
|
||||||
|
|
Loading…
Reference in a new issue