Skip to content

Instantly share code, notes, and snippets.

@kalw
Forked from stonith/curl
Created October 8, 2013 09:56
Show Gist options
  • Save kalw/6882381 to your computer and use it in GitHub Desktop.
Save kalw/6882381 to your computer and use it in GitHub Desktop.
curl -XPUT localhost:9200/_template/logstash -d '
{
"template" : "logs-*",
"settings" : {
"index.analysis.analyzer.default.type": "simple",
"index.cache.field.type": "soft",
"index.compress.stored": true,
"index.merge.policy.max_merged_segment": "5g",
"index.query.default_field": "@message",
"index.refresh_interval": "5s",
"index.term_index_divisor": 1,
"index.term_index_interval": 128,
"number_of_replicas": 1,
"number_of_shards": 3
},
"mappings": {
"_default_": {
"_all": {
"enabled": false
},
"properties": {
"@message": {
"type": "string",
"index": "analyzed"
},
"@source": {
"type": "string",
"index": "not_analyzed"
},
"@source_host": {
"type": "string",
"index": "not_analyzed"
},
"@source_path": {
"type": "string",
"index": "not_analyzed"
},
"@tags": {
"type": "string",
"index": "not_analyzed"
},
"@timestamp": {
"type": "date",
"index": "not_analyzed"
},
"@type": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment