Forum Discussion
tolinrome_13817
Nimbostratus
Dec 04, 2015syslog messages - change logging level
Hello,
I am receiving way to many syslog messages. I made sure in the gui that nothing is below the level of notice, but I am still getting alot of informational messages. How I can assure that I onl...
Brad_Parker
Cirrus
Dec 04, 2015If this is remote syslog you are talking about, take a look at this SOL. You will have to change your log level filters for remote syslog via tmsh.
https://support.f5.com/kb/en-us/solutions/public/13000/300/sol13333.html
Brad_Parker
Cirrus
Dec 04, 2015I'd encourage you to look closer at step 3. This will allow you to configure syslog-ng to filter the messages being sent to the remote syslog server. You can do something like this:
include "
filter f_remote_loghost {
level(notice..emerg);
};
destination d_remote_loghost {
udp(\"192.168.22.56\" port(514));
};
log {
source(s_syslog_pipe);
filter(f_remote_loghost);
destination(d_remote_loghost);
};
"
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