Ignore empty lines in Graphite plaintext (#3684)

This commit is contained in:
Noah Crowley 2018-01-16 16:44:56 -05:00 committed by Daniel Nelson
parent 72a235d9cf
commit b9ec94f181
1 changed files with 4 additions and 1 deletions

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 {