Hi, I’ve used Graylog 2.2 for several months and I’ve just updated to 2.3 (new installation). However, some of the pipelines that I’ve used until now no longer works. After some debugging I found out that the to_ip() function seems to not work properly anymore and the logs can’t be parsed. These are the lines of code involved (I’m using to_string() as a workaround):
let m = split(“,”, to_string($message.message));
//set_field(“src_ip”, to_ip(m[3]));
set_field(“src_ip”, to_string(m[3], “0.0.0.0”));