Hello,
I have discover a problem with the help of community.
I noticed when i create new field in logstash conf fields is always detected to a string field. Take a volume,voltest,vol, fields than example
For example :
match => { "message" => "%{DATA:date}[;]%{DATA:nom_compteur}[;]%{DATA:zone}[;]%{NUMBER:volume}" }
or
match => { "message" => "%{DATA:date}[;]%{DATA:nom_compteur}[;]%{DATA:zone}[;]%{INT:voltest}" }
or
match => { "message" => "%{DATA:date}[;]%{DATA:nom_compteur}[;]%{DATA:zone}[;]%{NUMBER:vol}" }
mutate {
convert => { "vol" => "integer" }
}
Now, go see the field configuration in Kibana :
Why ?