アプリケーションログの中、特別なキーワードをリアルタイムで検出したい場合はどうすれば良いでしょうか。
例えば、次のようなアプリケーションログの中 2020010100037 キーワードをリアルタイムで検出する場合です。
# vi /etc/rsyslog.d/80-application.conf
ファイル名にワイルドカードを使用が必要な場合、rsyslogバージョン8.25以上 を使用する必要があります。
#variables required for non-syslog log file forwarding – application log file #edit on your location
input(type=”imfile” File=”/var/log/application.log” Tag=”application” Severity=”info” Facility=”local7″)
###### Creates a template for each log file in the Logentries UI ### logic to apply the relevant templates to the different log files
if $programname == “application” then /var/log/plura/ceelog-127.0.0.1.log;CEETemplate :programname, isequal, “application” ~
# wget https://repo.plura.io/v5/module/rsyslog/80-application.conf
# curl https://repo.plura.io/v5/module/rsyslog/80-application.conf -o /etc/rsyslog.d/80-application.conf
# service rsyslog restart
[最新rsyslogインストール]
# cp /etc/yum.repos.d/rsyslog.repo /etc/yum.repos.d/rsyslog.repo.old
# curl -s http://rpms.adiscon.com/v8-stable/rsyslog.repo -o /etc/yum.repos.d/rsyslog.repo
# yum -y install rsyslog
# yum list rsyslog
# rsyslogd -version
rsyslogd 8.2012.0 (aka 2020.12) compiled …
[外部参考サイト]
https://www.rsyslog.com/doc/v8-stable/configuration/modules/imfile.html