Logging overview system for logs from multiple applications - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:54:57Z http://stackoverflow.com/feeds/question/557111 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/557111/logging-overview-system-for-logs-from-multiple-applications 2 Logging overview system for logs from multiple applications Fadeproof 2009-02-17T14:40:51Z 2009-02-17T18:18:19Z <p>I have a few independent webservices as well as a few clients that I am maintaining as part of our enterprise. Each webservice is logging to a separate log file and each client has a local log file on the user machine. The webservices are dispersed on several machines as well. I am using Log4Net and see appenders for communicating over msmq for instance. I am wondering if there exists some sort of enterprise logging system where I could redirect all my logging from both the services and the clients so that I could have one common place for all the logging and view them through some gui? Does there exist some sort of logging system like this?</p> http://stackoverflow.com/questions/557111/logging-overview-system-for-logs-from-multiple-applications/558091#558091 1 Answer by Dennis G. for Logging overview system for logs from multiple applications Dennis G. 2009-02-17T18:18:19Z 2009-02-17T18:18:19Z <p>To collect and store logging data in a central location, you usually need some kind of logging server or receiver application. You might want to give our logging tool <a href="http://www.gurock.com/products/smartinspect/" rel="nofollow">SmartInspect</a> a try, as it comes with a logging server that can receive logging data via TCP over a network or named pipes locally. SmartInspect also comes with a viewer application for analysing and filtering logging data.</p> <p>Alternatively you could take a look at the UNIX Syslog damon/protocol and client APIs. Syslog transmits/receives data via UDP and there are probably some web front-ends / GUI tools for analyzing the resulting logs.</p>