-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Elasticsearch templates that work with 2.x (#1501)
Generated from the same script that generates the existing ones. Also fixed Logstash URL in env.
- Loading branch information
Showing
20 changed files
with
2,139 additions
and
54 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
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
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
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
{ | ||
"mappings": { | ||
"_default_": { | ||
"_all": { | ||
"norms": { | ||
"enabled": false | ||
} | ||
}, | ||
"dynamic_templates": [ | ||
{ | ||
"fields": { | ||
"mapping": { | ||
"ignore_above": 1024, | ||
"index": "not_analyzed", | ||
"type": "string" | ||
}, | ||
"match_mapping_type": "string", | ||
"path_match": "fields.*" | ||
} | ||
} | ||
], | ||
"properties": { | ||
"@timestamp": { | ||
"type": "date" | ||
}, | ||
"beat": { | ||
"properties": { | ||
"hostname": { | ||
"ignore_above": 1024, | ||
"index": "not_analyzed", | ||
"type": "string" | ||
}, | ||
"name": { | ||
"ignore_above": 1024, | ||
"index": "not_analyzed", | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"input_type": { | ||
"ignore_above": 1024, | ||
"index": "not_analyzed", | ||
"type": "string" | ||
}, | ||
"message": { | ||
"index": "analyzed", | ||
"norms": { | ||
"enabled": false | ||
}, | ||
"type": "string" | ||
}, | ||
"offset": { | ||
"type": "long" | ||
}, | ||
"source": { | ||
"ignore_above": 1024, | ||
"index": "not_analyzed", | ||
"type": "string" | ||
}, | ||
"type": { | ||
"ignore_above": 1024, | ||
"index": "not_analyzed", | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"order": 0, | ||
"settings": { | ||
"index.refresh_interval": "5s" | ||
}, | ||
"template": "filebeat-*" | ||
} |
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
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
Oops, something went wrong.