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.
Cherry-pick elastic#10995 to 7.x: Include ip and boolean type when ge…
…nerating index pattern (elastic#11089) Cherry-pick of PR elastic#10995 to 7.x branch. Original message: 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.
- Loading branch information
Christoph Wurm
authored
Mar 6, 2019
1 parent
c5c893f
commit 9e01d75
Showing
3 changed files
with
9 additions
and
6 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 |
---|---|---|
|
@@ -291,5 +291,7 @@ var ( | |
"": "string", | ||
"geo_point": "geo_point", | ||
"date": "date", | ||
"ip": "ip", | ||
"boolean": "boolean", | ||
} | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.