Hi,
Is it possible to insert the parameter "ignore_malformed" on a template by a PUT?
My actual config is:
GET _template/http-access
{
"http-access" : {
"order" : 0,
"version" : 60001,
"index_patterns" : [
"http-access-*"
...
"client_ip" : {
"type" : "ip"
},
"corpname" : {
"type" : "keyword"
},
"category" : {
"type" : "keyword"
}
}
},
"aliases" : { }
}
}
So i would like to insert: "ignore_malformed": true on client_ip:
"client_ip" : {
"type" : "ip"
"ignore_malformed": true
Thank you.