Forum Discussion
Daniel_55334
Altostratus
May 20, 2008direct ALL logs on LTM to remote server
By default the log file /var/log/tmm is not configured in the syslog-ng.conf file and so are not directed to a remote syslog server (I have configured it to direct all logs to a syslog server). I am n...
Daniel_55334
Altostratus
May 27, 2008I found this in a askf5 solution.
Direct all log information to remote syslog server
destination remote_server {
udp("x.x.x.x" port (514));
};
filter f_alllogs {
level (debug...emerg);
};
log {
source(local);
filter(f_alllogs);
destination(remote_server);
};
However, it does not really direct ALL logs, e.g. I did not find tmm messages in the syslog server. Do I need to add the syslog server to every destination parameter in order to direct all logs? e.g.
source s_tmm {
pipe("/var/run/tmm.pipe");
};
destination d_tmm {
file("/var/log/tmm" create_dirs(yes));
udp("10.10.10.10" port (514));
};
log {
source(s_tmm);
destination(d_tmm);
};
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects
