Created
December 11, 2018 05:39
-
-
Save tankhuu/aeb28e141a34d4df9cfa0fc3715139e2 to your computer and use it in GitHub Desktop.
Elasticsearch Templates
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
# DELETE _template/mysql_slow | |
PUT _template/mysql_slow | |
{ | |
"order": 0, | |
"template": "mysql-slow-*", | |
"settings": { | |
"index": { | |
"number_of_shards": "1" | |
} | |
}, | |
"mappings": { | |
"index_type": { | |
"properties": { | |
"@timestamp": { | |
"type": "date" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment