Skip to content
Snippets Groups Projects
Commit 87830a1c authored by Noah Crowley's avatar Noah Crowley Committed by Daniel Nelson
Browse files

Ignore empty lines in Graphite plaintext (#3684)

parent d188b78d
No related branches found
No related tags found
No related merge requests found
......@@ -86,8 +86,11 @@ func (p *GraphiteParser) Parse(buf []byte) ([]telegraf.Metric, error) {
// Trim the buffer, even though there should be no padding
line := strings.TrimSpace(string(buf))
metric, err := p.ParseLine(line)
if line == "" {
continue
}
metric, err := p.ParseLine(line)
if err == nil {
metrics = append(metrics, metric)
} else {
......
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