Re: Centralized logging server...

2008-12-05 Thread Sam
Yep...I'm planning on using SysLogHandler. Although if I were to use rsyslog, for example, I might potentially be better off using tcp or even doing it using rfc 3195. Sysloghandler uses udp...I imagine that will be faster but with less reliability. I'll have to think about that. Has anyone imp

Re: Centralized logging server...

2008-12-05 Thread skip
Sam> I've been playing with the python logging module. I'd like all of Sam> these applications to write their logs to the same place in order Sam> to make analysis easier. Sam> Any ideas on best practices? Perhaps use logging.handlers.SysLogHandler? Sam> What are my options