mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Add logging during WAL replay
Signed-off-by: Chris Marchbanks <csmarchbanks@gmail.com>
This commit is contained in:
parent
3bc1ea3d75
commit
0cd46f8762
3
head.go
3
head.go
|
@ -502,6 +502,7 @@ func (h *Head) Init(minValidTime int64) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
level.Info(h.logger).Log("msg", "replaying WAL, this may take awhile")
|
||||
// Backfill the checkpoint first if it exists.
|
||||
dir, startFrom, err := LastCheckpoint(h.wal.Dir())
|
||||
if err != nil && err != ErrNotFound {
|
||||
|
@ -525,6 +526,7 @@ func (h *Head) Init(minValidTime int64) error {
|
|||
return errors.Wrap(err, "backfill checkpoint")
|
||||
}
|
||||
startFrom++
|
||||
level.Info(h.logger).Log("msg", "WAL checkpoint loaded")
|
||||
}
|
||||
|
||||
// Find the last segment.
|
||||
|
@ -548,6 +550,7 @@ func (h *Head) Init(minValidTime int64) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
level.Info(h.logger).Log("msg", "WAL segment loaded", "segment", i, "maxSegment", last)
|
||||
}
|
||||
|
||||
return nil
|
||||
|
|
Loading…
Reference in a new issue