Logstash. Mutate's split doesn't split string

Hi, community. I have field "temp" with this value: "2.4.3-371989". I want split it by dots. With this purpose I use mutate filter this way:

mutate {
  split => ["temp", "."]
}

But after split "temp" field still equals "2.4.3-371989".

Hi,

Split option take a Hash not an Array.
Need to be like this :

mutate {
  split => { "temp" => "." }
}

Cad.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.