mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/protoparser/prometheus: typo fix in error message
This commit is contained in:
parent
d1ad3adcbe
commit
215967437d
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ func (ctx *streamContext) Read(r io.Reader) bool {
|
|||
} else {
|
||||
if ctx.err != io.EOF {
|
||||
readErrors.Inc()
|
||||
ctx.err = fmt.Errorf("cannot read graphite plaintext protocol data: %w", ctx.err)
|
||||
ctx.err = fmt.Errorf("cannot read Prometheus exposition data: %w", ctx.err)
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue