Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Block Comments in Logstash Config file

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.

like image 419
Yellowjacket Avatar asked Jul 06 '15 15:07

Yellowjacket


1 Answers

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
  # ...
}
like image 74
Mangoski Avatar answered Sep 18 '22 11:09

Mangoski