Este módulo prove uma interface para a rotinas UNIX syslog.
Este modulo cobre as rotinas do sistema syslog.
A pure Python library that can speak to a syslog server is available in the logging.handlers module as SysLogHandler.
The module defines the following functions:
syslog.syslog(message)
syslog.syslog(priority, message)
Send the string message to the system logger.
A trailing newline is added if necessary.
Each message is tagged with a priority composed of a facility and a level.
The optional priority argument, which defaults to LOG_INFO, determines the message priority.
If the facility is not encoded in priority using logical-or (LOG_INFO | LOG_USER), the value given in the openlog() call is used.
If openlog() has not been called prior to the call to syslog(), openlog() will be called with no arguments.
syslog.openlog([ident[, logoption[, facility]]])
Logging options of subsequent syslog() calls can be set by calling openlog().
syslog() will call openlog() with no arguments if the log is not currently open.
The optional ident keyword argument is a string which is prepended to every message, and defaults to sys.argv[0] with leading path components stripped. The optional logoption keyword argument (default is 0) is a bit field – see below for possible values to combine. The optional facility keyword argument (default is LOG_USER) sets the default facility for messages which do not have a facility explicitly encoded.
syslog.closelog()
Reset the syslog module values and call the system library closelog().
This causes the module to behave as it does when initially imported. For example, openlog() will be called on the first syslog() call (if openlog() hasn’t already been called), and ident and other openlog() parameters are reset to defaults.
syslog.setlogmask(maskpri)
The module defines the following constants:
May 11 10:40:48 scrooge disk-health-nurse[26783]: [ID 702911 user.error] m:SY-mon-full-500 c:H : partition health measures for /var did not suffice - still using 96% of partition space
Dividido em colunas:
Coluna 1 = “May 11 10:40:48” > Timestamp
Coluna 2 = “scrooge” > Nome da máquina
Coluna 3 = “disk-health-nurse[26783]:” > Aplicação/Processo
Coluna 4 = “[ID 702911 user.error]” > Syslog facility.level
Coluna 5 = “m:SY-mon-full-500” > Mensagem ID
Coluna 6 = “c:H : partition health…” > Mensagem [Podendo incluir identificadores de seção, serviço e informações uteis]
A simple set of examples:
import syslog
syslog.syslog('Processing started')
if error:
syslog.syslog(syslog.LOG_ERR, 'Processing started')
An example of setting some log options, these would include the process ID in logged messages, and write the messages to the destination facility used for mail logging:
syslog.openlog(logoption=syslog.LOG_PID, facility=syslog.LOG_MAIL)
syslog.syslog('E-mail processing initiated...')