我正在尝试设置我的rsyslog,以便将/ opt / appname / logs下的应用程序
生成的日志发送到远程syslog服务器.
我已经配置了rsyslog来发送操作系统级别日志,但是想知道它是否也可以发送应用程序的日志.
我不确定IncludeConfig指令是否有效,因为它查找另一个* .conf
文件.
rsyslog
支持从
文件中读取.这是通过imfile模块完成的.您需要以下配置:
module(load="imfile" PollingInterval="10") #needs to be done just once
# needs to be done for each file you want to watch
input(type="imfile" File="/path/to/file1"
Tag="tag1"
StateFile="statefile1"
Severity="error"
Facility="local7")
在the rsyslog documentation site有更多信息
原文链接:https://www.f2er.com/linux/399180.html