Luca_55898
Jul 08, 2011Nimbostratus
Syslog errors only
My LTM are nailing my syslog server with so much stuff it makes that it is drowning out any imporant stuff.
How can i configure my LTM (version 10) to only send errors to the syslog server?
How can i configure my LTM (version 10) to only send errors to the syslog server?
syslog include "
destination remote_server {
udp(\"x.x.x.x\" port (514));
};
filter f_alllogs { level (warn...emerg);
};
log { source(local);
filter(f_alllogs);
destination(remote_server);
};"
Then run:
bpsh < /tmp/new_syslog.conf
Save it when you're done testing:
b save
Jen
I made the changes but am still seeing informational and debugging messages comming into my syslog:
[root@LB001:Active] config b syslog include
SYSLOG - Include Data:
destination remote_server {
udp("192.168.41.77" port (514));
};
filter f_alllogs {
level (warn...emerg);
};
log {
source(local);
filter(f_alllogs);
destination(remote_server);
};
Is there anything else i need?
Thanks,
Jen