Y-Axis Kibana problem function SUM

Hi !

Your volume field is a string, that why you can't make sum.

I don't know why %{NUMBER:volume} is a string... but you can try this

filter {
   mutate {
      convert => { "volume" => "integer" }
   }
}