Ignore empty lines in Graphite plaintext (#3684)

This commit is contained in:
Noah Crowley
2018-01-16 13:44:56 -08:00
committed by Daniel Nelson
parent 72a235d9cf
commit b9ec94f181
+4 -1
View File
@@ -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 {