logging:centralized_logging
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
logging:centralized_logging [2016/07/14 14:44] – 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^Name^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. | ||
- | |||
- | The receiving syslog server then can be configured to direct log messages of a certain facility and/or log level to various files. | ||
- | |||
- | < | ||
- | 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 [[http:// | ||
- | |||
- | < | ||
- | $ModLoad imudp | ||
- | $UDPServerAddress x.x.x.x | ||
- | $UDPServerRun 514 | ||
- | </ | ||
- | |||
- | |||
- | And then restart rsyslogd. | ||
- | |||
- | <code bash> | ||
- | systemctl restart rsyslogd.service | ||
- | </ | ||
- | |||
- | |||
- | |||
- | ===== Setting up the remote log sending servers ===== | ||
- | |||
- | Setting up your remote servers is even easier. | ||
- | |||
- | <file bash / | ||
- | *.* @x.x.x.x: | ||
- | </ | ||
- | |||
- | This will send all logs of any facility and any level to the server. | ||
- | |||
- | You can also get fancy here and keep some logs on the local server and only send some things remotely. | ||
- | |||
- | <file bash / | ||
- | 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 / | ||
- | |||
- | <file bash / | ||
- | *.*; | ||
- | </ | ||
- | |||
- | |||
- | ===== 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 [[http:// | ||
- | |||
- | |||
- | 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 [[http:// | ||
- | |||
- | |||
- | See also **syslog-ng**. | ||
- | |||
- | ===== References ===== | ||
- | |||
- | * https:// | ||
- | |||
- | * http:// | ||
- | |||
logging/centralized_logging.1468507484.txt.gz · Last modified: 2020/07/15 09:30 (external edit)