mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Merge pull request #3252 from LK4D4/proper_reset
[storage/local] fix timer.Reset usage
This commit is contained in:
commit
a5412cfc59
|
@ -998,7 +998,8 @@ func (s *MemorySeriesStorage) logThrottling() {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-s.throttled:
|
case <-s.throttled:
|
||||||
if !timer.Reset(time.Minute) {
|
if !timer.Stop() {
|
||||||
|
<-timer.C
|
||||||
score, _ := s.getPersistenceUrgencyScore()
|
score, _ := s.getPersistenceUrgencyScore()
|
||||||
log.
|
log.
|
||||||
With("urgencyScore", score).
|
With("urgencyScore", score).
|
||||||
|
@ -1006,6 +1007,7 @@ func (s *MemorySeriesStorage) logThrottling() {
|
||||||
With("memoryChunks", atomic.LoadInt64(&chunk.NumMemChunks)).
|
With("memoryChunks", atomic.LoadInt64(&chunk.NumMemChunks)).
|
||||||
Error("Storage needs throttling. Scrapes and rule evaluations will be skipped.")
|
Error("Storage needs throttling. Scrapes and rule evaluations will be skipped.")
|
||||||
}
|
}
|
||||||
|
timer.Reset(time.Minute)
|
||||||
case <-timer.C:
|
case <-timer.C:
|
||||||
score, _ := s.getPersistenceUrgencyScore()
|
score, _ := s.getPersistenceUrgencyScore()
|
||||||
log.
|
log.
|
||||||
|
|
Loading…
Reference in a new issue