在Debian上,Filebeat的配置文件通常位于/etc/filebeat/filebeat.yml
sudo nano /etc/filebeat/filebeat.yml
在filebeat.yml文件中找到logging.level设置。如果没有这个设置,你可以在filebeat.yml文件的末尾添加它。
将logging.level设置为你想要的日志级别。可选的日志级别有:debug、info(默认)、warn和error。例如,如果你想要将日志级别设置为debug,则添加以下行:
logging.level: debug
保存并关闭filebeat.yml文件。
重新启动Filebeat服务以应用更改:
sudo systemctl restart filebeat
现在,Filebeat将以你设置的日志级别记录日志。请注意,更高的日志级别可能会导致更多的日志输出,这可能会影响性能。在生产环境中,请根据需要谨慎选择日志级别。