forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include ip and boolean type when generating index pattern (elastic#10995
) A number of fields in our `fields.yml` files now are `type: ip` (e.g. `source.ip`) and `type: boolean`, but the code generating index patterns does not know about these types yet and so does not add a `type` to the index pattern for those fields at all. This leads to errors in Kibana when looking at dashboards that contain references to those fields. (cherry picked from commit e98026e)
- Loading branch information
Christoph Wurm
committed
Mar 6, 2019
1 parent
0263e03
commit 590fd69
Showing
3 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -254,5 +254,7 @@ var ( | |
"": "string", | ||
"geo_point": "geo_point", | ||
"date": "date", | ||
"ip": "ip", | ||
"boolean": "boolean", | ||
} | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.