Skip to content

Instantly share code, notes, and snippets.

@ruflin
Created October 7, 2018 07:30
Show Gist options
  • Select an option

  • Save ruflin/b0228fe1b93bc9e3b891537c37a1063c to your computer and use it in GitHub Desktop.

Select an option

Save ruflin/b0228fe1b93bc9e3b891537c37a1063c to your computer and use it in GitHub Desktop.
DELETE ecs
PUT ecs
POST ecs/_mapping/_doc
{
"properties": {
"host.name": {
"type": "keyword"
}
}
}
GET ecs
POST ecs/_mapping/_doc
{
"properties": {
"host.name": {
"type": "keyword",
"fields": {
"text": {
"type": "text"
}
}
}
}
}
GET ecs
POST ecs/_mapping/_doc
{
"properties": {
"host.name": {
"type": "keyword",
"fields": {
"text": {
"type": "text"
}
}
},
"host.ip": {
"type": "ip"
}
}
}
GET ecs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment