Skip to content

Instantly share code, notes, and snippets.

@rexroof
Created August 18, 2015 14:58
Show Gist options
  • Save rexroof/e1303e256dedd2569c63 to your computer and use it in GitHub Desktop.
Save rexroof/e1303e256dedd2569c63 to your computer and use it in GitHub Desktop.
{
"order" : 0,
"template" : "logstash-*",
"settings" : {
"index.refresh_interval" : "10s"
},
"mappings" : {
"_default_" : {
"dynamic_templates" : [ {
"string_fields" : {
"mapping" : {
"index" : "analyzed",
"omit_norms" : true,
"type" : "string",
"fields" : {
"raw" : {
"ignore_above" : 256,
"index" : "not_analyzed",
"type" : "string",
"doc_values": true
}
}
},
"match_mapping_type" : "string",
"match" : "*"
}
} ],
"_all" : {
"enabled" : true
},
"properties" : {
"geoip" : {
"path" : "full",
"dynamic" : true,
"type" : "object",
"properties" : {
"location" : {
"type" : "geo_point"
}
}
},
"@version" : {
"index" : "not_analyzed",
"type" : "string"
}
}
}
},
"aliases" : { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment