Multiple Application Logging System

I have several independent web services, as well as several clients that I support as part of our enterprise. Each web service is logged in a separate log file, and each client has a local log file on the user's machine. Web services are also scattered across multiple machines. I use Log4Net and see, for example, messaging applications via msmq. I am wondering if there is some kind of enterprise logging system where I could redirect all my logs from both services and clients so that I have one common place for all logs and view them through some gui? Is there some kind of logging system like this?

+3
source share
2 answers

In order to collect and store registration data in a central location, you usually need some kind of server or recipient application. You might want to give our SmartInspect registration tool a try, because it comes with a registration server that can receive registration data through TCP through network or named pipes locally. SmartInspect also comes with a viewer for analyzing and filtering logging data.

Alternatively, you can take a look at the Syslog server API / UNIX protocol and client APIs. Syslog sends / receives data via UDP, and there are probably some web / GUI interfaces for analyzing received logs.

+1
0

Source: https://habr.com/ru/post/1703353/


All Articles