Skip to content

Instantly share code, notes, and snippets.

@is
Last active December 25, 2015 13:49
Show Gist options
  • Select an option

  • Save is/6986052 to your computer and use it in GitHub Desktop.

Select an option

Save is/6986052 to your computer and use it in GitHub Desktop.
curl -XPUT http://localhost:9200/_template/logstash_index_template -d '
{
"template": "logstash-*",
"mappings": {
"_default_": {
"_all": {"enabled": false},
"dynamic_templates": [{
"string_template" : {
"match" : "*",
"mapping": { "type": "string", "index": "not_analyzed" },
"match_mapping_type" : "string"
}
}],
"properties": {
"moneyOnline": {"type": "float"},
"@message": {"type": "string", "index" : "analyzed" },
"message": {"type": "string", "index" : "analyzed" }
}
}
}
}
'
echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment