mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/protoparser: properly update vm_protoparser_rows_read_total{type="promscrape"}
metric
This commit is contained in:
parent
457e61900d
commit
cde18d1f43
1 changed files with 4 additions and 4 deletions
|
@ -150,18 +150,18 @@ func (r *Row) unmarshal(s string, tagsPool []Tag, noEscapes bool) ([]Tag, error)
|
|||
var rowsReadScrape = metrics.NewCounter(`vm_protoparser_rows_read_total{type="promscrape"}`)
|
||||
|
||||
func unmarshalRows(dst []Row, s string, tagsPool []Tag, noEscapes bool, errLogger func(s string)) ([]Row, []Tag) {
|
||||
dstLen := len(dst)
|
||||
for len(s) > 0 {
|
||||
n := strings.IndexByte(s, '\n')
|
||||
if n < 0 {
|
||||
// The last line.
|
||||
dst, tagsPool = unmarshalRow(dst, s, tagsPool, noEscapes, errLogger)
|
||||
break
|
||||
} else {
|
||||
dst, tagsPool = unmarshalRow(dst, s[:n], tagsPool, noEscapes, errLogger)
|
||||
s = s[n+1:]
|
||||
}
|
||||
dst, tagsPool = unmarshalRow(dst, s[:n], tagsPool, noEscapes, errLogger)
|
||||
s = s[n+1:]
|
||||
}
|
||||
rowsReadScrape.Add(len(dst))
|
||||
rowsReadScrape.Add(len(dst) - dstLen)
|
||||
return dst, tagsPool
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue