Skip to content

Instantly share code, notes, and snippets.

@ggnanasekaran77
Last active September 25, 2021 00:10
Show Gist options
  • Save ggnanasekaran77/99acf6322a7d63e567f13cea3f2e5c67 to your computer and use it in GitHub Desktop.
Save ggnanasekaran77/99acf6322a7d63e567f13cea3f2e5c67 to your computer and use it in GitHub Desktop.
PUT _index_template/csv-log
{
"index_patterns": ["csv-log-*"],
"template": {
"settings": {
"number_of_shards": 1
},
"mappings": {
"properties": {
"geoip": {
"properties": {
"location": { "type": "geo_point" }
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment