Skip to content

Commit

Permalink
Added path tag to tail input plugin (influxdata#4292)
Browse files Browse the repository at this point in the history
  • Loading branch information
wingsof authored and danielnelson committed Jun 22, 2018
1 parent ee6e4b0 commit 3f28add
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion plugins/inputs/tail/tail.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,11 @@ func (t *Tail) receiver(tailer *tail.Tail) {

m, err = t.parser.ParseLine(text)
if err == nil {
t.acc.AddFields(m.Name(), m.Fields(), m.Tags(), m.Time())
if m != nil {
tags := m.Tags()
tags["path"] = tailer.Filename
t.acc.AddFields(m.Name(), m.Fields(), tags, m.Time())
}
} else {
t.acc.AddError(fmt.Errorf("E! Malformed log line in %s: [%s], Error: %s\n",
tailer.Filename, line.Text, err))
Expand Down

0 comments on commit 3f28add

Please sign in to comment.