Is it possible to use "nested if" in logstash.conf

Hi Team,

Is it possible to use "nested if" in output section inside logstash.conf ?

1 Like

If you mean

if ... {
  if ... {
    if ... {
      ...
    }
  }
}

then yes.

1 Like

Ok. Thanks