Skip to content
Snippets Groups Projects
Commit d495c68e authored by Tom Wilkie's avatar Tom Wilkie
Browse files

Need to set the number of bytes read, not add them.


Signed-off-by: default avatarTom Wilkie <tom.wilkie@gmail.com>
parent 9ab14c9e
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ func (t *tailer) markPosition() error {
return err
}
readBytes.WithLabelValues(t.path).Add(float64(pos))
readBytes.WithLabelValues(t.path).Set(float64(pos))
level.Debug(t.logger).Log("path", t.path, "filename", t.filename, "current_position", pos)
t.positions.Put(t.filename, pos)
return nil
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment