Skip to content

Instantly share code, notes, and snippets.

@tankhuu
Created December 11, 2018 05:39
Show Gist options
  • Save tankhuu/aeb28e141a34d4df9cfa0fc3715139e2 to your computer and use it in GitHub Desktop.
Save tankhuu/aeb28e141a34d4df9cfa0fc3715139e2 to your computer and use it in GitHub Desktop.
Elasticsearch Templates
# 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