在 Logstash 配置文件中阻止注释
Block Comments in Logstash Config file
我刚开始使用 Logstash,想知道是否可以在 logstash 配置文件中指定块注释?
这将非常有用,因为我正在测试跨越多行的长 grok 模式。
目前没有块评论可用。我们只能通过在需要注释掉的行的开头使用 # 来进行单行注释。
也可以在行的任何地方使用注释
# this is a comment
input { # comments can appear at the end of a line, too
# ...
}
我刚开始使用 Logstash,想知道是否可以在 logstash 配置文件中指定块注释? 这将非常有用,因为我正在测试跨越多行的长 grok 模式。
目前没有块评论可用。我们只能通过在需要注释掉的行的开头使用 # 来进行单行注释。
也可以在行的任何地方使用注释
# this is a comment
input { # comments can appear at the end of a line, too
# ...
}