Skip to content

Instantly share code, notes, and snippets.

@alexanderblackh
Created March 22, 2017 07:02
Show Gist options
  • Save alexanderblackh/b96af78629343c882ac358320197345a to your computer and use it in GitHub Desktop.
Save alexanderblackh/b96af78629343c882ac358320197345a to your computer and use it in GitHub Desktop.
ES Mapping
{
"mappings": {
"_default_": {
"properties": {
"@timestamp": {"type": "date", "format": "epoch_millis"}
},
"dynamic_templates": [
{
"strings": {
"match_mapping_type": "string",
"mapping": {
"type": "text",
"analyzer": "english",
"fields": {
"raw": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment