Skip to content

Instantly share code, notes, and snippets.

@drawks
Forked from kimchy/gist:1556146
Created January 3, 2012 19:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save drawks/1556373 to your computer and use it in GitHub Desktop.
Save drawks/1556373 to your computer and use it in GitHub Desktop.
Disable the _all field
curl -XPUT 'http://localhost:9200/_template/template_logstash/' -d '
{
"template": "logstash-*",
"mappings": {
"_default_": {
"_all" : {"enabled" : false}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment