开发者

how to syslog-ng to remote facility

开发者 https://www.devze.com 2023-04-09 18:10 出处:网络
i have a host running syslog-ng. it does all it\'s stuff locally fine (creating log files etc). however, i would like to forward ALL of it\'s logs to a remote machine - specifically to one facility on

i have a host running syslog-ng. it does all it's stuff locally fine (creating log files etc). however, i would like to forward ALL of it's logs to a remote machine - specifically to one facility on the remote machine (local4). i tried playing around with rewrite (set-facility) and templates within the destination (syntax errors) - but to no avail.

destination remote_server { 
  udp(\"172.18.192.8\" port (514)); 
  udp(\"172.18.192.9\" port (514));
}; 
rewrite r_local4 {
  set-facility(local4);
};
filter f_alllogs {
  level (debug...emerg);
};
log {
  source(loc开发者_运维百科al);
  filter(f_alllogs);
  rewrite(r_local4)
  destination(remote_server); 
};


AFAIK, currently it is not possible to modify the facility of a message in syslog-ng.

Is there a special reason you want to do it?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号