Skip to content

Instantly share code, notes, and snippets.

@evoxco
Last active October 6, 2015 07:13
Show Gist options
  • Save evoxco/20ea1d4c56cc331bf2ed to your computer and use it in GitHub Desktop.
Save evoxco/20ea1d4c56cc331bf2ed to your computer and use it in GitHub Desktop.
Nprobe ElasticSearch Mapping Template
{
"template": "nprobe*",
"mappings": {
"_default_": {
"_timestamp": {
"enabled": true,
"store": true
}
},
"nProbe": {
"properties": {
"HTTP_HOST": {
"type": "string",
"index": "not_analyzed"
},
"HTTP_SITE": {
"type": "string",
"index": "not_analyzed"
},
"HTTP_URL": {
"type": "string",
"index": "not_analyzed"
},
"HTTP_UA": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment