Hi, I've been converting some fields in logstash, but I was wondering if I really need to do this if I have a index template with those fields already created in elastic
mutate {
convert => {
"value" => "float"
"hostid" => "integer"
}
}
in index template:
},
"value": {
"type": "float"
},
"hostid": {
"type": "long"
},