logging:centralized_logging
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
logging:centralized_logging [2016/07/14 14:29] – peter | logging:centralized_logging [2019/11/30 13:46] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Logging - Centralized logging ====== | ||
- | Setting up a centralized log server using **syslog** isn't as hard as many may believe. | ||
- | |||
- | |||
- | ===== Benefits to a centralized logs ===== | ||
- | |||
- | Reduces disk space usage and disk I/O on core servers that should be busy doing something else. This is especially true if you want to log all queries to your database. | ||
- | |||
- | Removes logs from the server in the event of an intrusion or system failure. | ||
- | |||
- | All of your logs are in one place, duh! This makes things like grepping through say Apache error logs across multiple webservers easier than bouncing around between boxes. | ||
- | |||
- | |||
- | ===== Syslog Review ===== | ||
- | |||
- | In case you aren't terribly familiar with how syslog works, here's a quick primer. | ||
- | |||
- | ^Facility^Description^ | ||
- | |0|kernel messages| | ||
- | |1|user-level messages| | ||
- | |2|mail system| | ||
- | |3|system daemons| | ||
- | |4|security/ | ||
- | |5|messages generated internally by syslogd| | ||
- | |6|line printer subsystem| | ||
- | |7|network news subsystem| | ||
- | |8|UUCP subsystem| | ||
- | |9|clock daemon| | ||
- | |10|security/ | ||
- | |11|FTP daemon| | ||
- | |12|NTP subsystem| | ||
- | |13|log audit| | ||
- | |14|log alert| | ||
- | |15|clock daemon| | ||
- | |16|local use 0 (local0)| | ||
- | |17|local use 1 (local1)| | ||
- | |18|local use 2 (local2)| | ||
- | |19|local use 3 (local3)| | ||
- | |20|local use 4 (local4)| | ||
- | |21|local use 5 (local5)| | ||
- | |22|local use 6 (local6)| | ||
- | |23|local use 7 (local7)| | ||
- | |||
- | |||
- | For each facility logs are sent using a particular level, the levels are: | ||
- | |||
- | ^Level^Description^ | ||
- | |0|Emergency|System is unusable| | ||
- | |1|Alert|Action must be taken immediately| | ||
- | |2|Critical|Critical conditions| | ||
- | |3|Error|Error conditions| | ||
- | |4|Warning|Warning conditions| | ||
- | |5|Notice|Normal but significant condition| | ||
- | |6|Informational|Informational messages| | ||
- | |7|Debug|Debug-level messages| | ||
- | |||
- | So for any given log message you set these two options to give a hint as to where the logs should be directed. For example, if an email server receives a new message it would likely be sent as mail.info and a kernel panic would be sent using kern.emerg | ||
- | |||
- | The receiving syslog server then can be configured to direct log messages of a certain facility and/or log level to various files. For example, a default Ubuntu system has some settings like this: | ||
- | |||
- | daemon.* | ||
- | kern.* | ||
- | mail.* | ||
- | But you can also do more granular separation for example you might want to log mail.err into a separate file from the main mail logs to make it easier to spot new errors with this: | ||
- | |||
- | mail.* | ||
- | mail.err | ||
- | Setting up your central server | ||
- | Configuring the master log server is pretty easy. On Ubuntu the default syslog server is rsyslog and that's what I'll be using as an example here. You'll need to edit / | ||
- | |||
- | $ModLoad imudp | ||
- | $UDPServerAddress x.x.x.x | ||
- | $UDPServerRun 514 | ||
- | And then restart rsyslogd. See that wasn't so hard... | ||
- | |||
- | Setting up the remote log sending servers | ||
- | Setting up your remote servers is even easier. If you want to send ALL of your logs to the central server it's just a matter of adding one line to the top of / | ||
- | |||
- | *.* @x.x.x.x: | ||
- | This will send all logs of any facility and any level to the server. Note that the local syslog will, as configured by default, still log locally. So if you don't want that be sure to remove all of the other configuration in this file. | ||
- | |||
- | You can also get fancy here and keep some logs on the local server and only send some things remotely. For most of your custom apps and logs you'll want to be using the LOCAL[0-9] facilities. Let's say we're going to want to centrally log our Python logs and Apache error logs. We'll be using LOCAL0 and LOCAL1 for them respectively. That config would look like: | ||
- | |||
- | local0.* @x.x.x.x: | ||
- | local1.* @x.x.x.x: | ||
- | Keep in mind however that most systems have *.info, *.debug, etc. configurations setup so you might be duplicating your data. If you poke around this file you'll see lots of configurations ending in .none, this instructs rsyslog to not include those facilities in this particular file. So for example, you'd want to edit your / | ||
- | |||
- | *.*; | ||
- | Additional help and features | ||
- | While most applications are easy to setup for use with syslog, here are some pointers for more info on the subject: | ||
- | |||
- | Apache support sending error logs to syslog via the ErrorLog syslog: | ||
- | For more information on setting up your own Python code to use syslog, check out the logging.handlers.SysLogHandler handler for the logging module. | ||
- | We've only really scratched the surface of the features of rsyslog with this setup. You can configure it to do some fairly advanced separation of logs based on the sending host, application name, and other various aspects of the message itself. Refer to the rsyslog documentation for more information on that. |
logging/centralized_logging.1468506595.txt.gz · Last modified: 2020/07/15 09:30 (external edit)