Block Comments in Logstash Config file

Anagha Desai picture Anagha Desai · Jul 6, 2015 · Viewed 9k times · Source

I am just getting started with Logstash and wondering whether there is a way to specify block comments in logstash config file? It will be very useful as I am testing with long grok patterns which span multiple lines.

Answer

Mangoski picture Mangoski · Jul 15, 2015

Currently there is no block comments available . We have to go for single line comment only by using # at the start of line which you need to comment out.

Also comments can be used anywhere in the line

# this is a comment

input { # comments can appear at the end of a line, too
  # ...
}