Skip to content

Instantly share code, notes, and snippets.

@gauravarora
Created May 28, 2014 06:59
Show Gist options
  • Save gauravarora/359d71999ed811ae56c6 to your computer and use it in GitHub Desktop.
Save gauravarora/359d71999ed811ae56c6 to your computer and use it in GitHub Desktop.
logstash-template-2
{
"template": "logstash-*",
"settings" : {
"number_of_shards" : 1,
"number_of_replicas" : 0,
},
"mappings": {
"_default_": {
"_all": { "enabled": false },
"_source": { "compress": true },
"dynamic_templates": [
{
"string_template" : {
"match" : "*",
"mapping": { "type": "string", "index": "not_analyzed" },
"match_mapping_type" : "string"
}
}
],
"properties" : {
"zone" : { "type" : "string", "index" : "not_analyzed" },
"username" : { "type" : "string", "index" : "not_analyzed" }
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment