Skip to content

Commit

Permalink
6.7: Remove IP fields from default_field in Elasticsearch template (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Wurm authored and ruflin committed Mar 25, 2019
1 parent bb5f63a commit 1cc7728
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ https://github.com/elastic/beats/compare/v6.6.0...6.x[Check the HEAD diff]
- Include ip and boolean type when generating index pattern. {pull}10995[10995]
- Using an environment variable for the password when enrolling a beat will now raise an error if the variable doesn't exist. {pull}10936[10936]
- Cancelling enrollment of a beat will not enroll the beat. {issue}10150[10150]
- Remove IP fields from default_field in Elasticsearch template. {pull}11399[11399]

*Auditbeat*

Expand Down
2 changes: 1 addition & 1 deletion libbeat/template/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (p *Processor) Process(fields common.Fields, path string, output common.Map
}

switch field.Type {
case "", "keyword", "text", "ip":
case "", "keyword", "text":
addToDefaultFields(&field)
}

Expand Down

0 comments on commit 1cc7728

Please sign in to comment.