| Sys::Syslog(3pm) | Perl Programmers Reference Guide | Sys::Syslog(3pm) |
Sys::Syslog - Perl interface to the UNIX syslog(3) calls
This is the documentation of version 0.36
use Sys::Syslog; # all except setlogsock()
use Sys::Syslog qw(:standard :macros); # standard functions & macros
openlog($ident, $logopt, $facility); # don't forget this
syslog($priority, $format, @args);
$oldmask = setlogmask($mask_priority);
closelog();
"Sys::Syslog" is an interface to the UNIX syslog(3) program. Call "syslog()" with a string priority and a list of "printf()" args just like syslog(3).
"Sys::Syslog" exports the following "Exporter" tags:
openlog closelog setlogmask syslog
setlogsock
By default, "Sys::Syslog" exports the symbols from the ":standard" tag.
This function will croak if it can't connect to the syslog daemon.
Note that "openlog()" now takes three arguments, just like openlog(3).
You should use "openlog()" before calling "syslog()".
Options
Examples
Open the syslog with options "ndelay" and "pid", and with facility "LOCAL0":
openlog($name, "ndelay,pid", "local0");
Same thing, but this time using the macro corresponding to "LOCAL0":
openlog($name, "ndelay,pid", LOG_LOCAL0);
$priority can specify a level, or a level and a facility. Levels and facilities can be given as strings or as macros. When using the "eventlog" mechanism, priorities "DEBUG" and "INFO" are mapped to event type "informational", "NOTICE" and "WARNING" to "warning" and "ERR" to "EMERG" to "error".
If you didn't use "openlog()" before using "syslog()", "syslog()" will try to guess the $ident by extracting the shortest prefix of $format that ends in a ":".
Examples
# informational level
syslog("info", $message);
syslog(LOG_INFO, $message);
# information level, Local0 facility
syslog("info|local0", $message);
syslog(LOG_INFO|LOG_LOCAL0, $message);
Examples
Only log errors:
setlogmask( LOG_MASK(LOG_ERR) );
Log everything except informational messages:
setlogmask( ~(LOG_MASK(LOG_INFO)) );
Log critical messages, errors and warnings:
setlogmask( LOG_MASK(LOG_CRIT)
| LOG_MASK(LOG_ERR)
| LOG_MASK(LOG_WARNING) );
Log all messages up to debug:
setlogmask( LOG_UPTO(LOG_DEBUG) );
Being Perl-specific, this function has evolved along time. It can currently be called as follow:
The available options are:
The available mechanisms are:
The default is to try "native", "tcp", "udp", "unix", "pipe", "stream", "console". Under systems with the Win32 API, "eventlog" will be added as the first mechanism to try if "Win32::EventLog" is available.
Giving an invalid value for $sock_type will "croak".
Examples
Select the UDP socket mechanism:
setlogsock("udp");
Send messages using the TCP socket mechanism on a custom port:
setlogsock({ type => "tcp", port => 2486 });
Send messages to a remote host using the TCP socket mechanism:
setlogsock({ type => "tcp", host => $loghost });
Try the native, UDP socket then UNIX domain socket mechanisms:
setlogsock(["native", "udp", "unix"]);
The First Rule of Sys::Syslog is: You do not call "setlogsock".
The Second Rule of Sys::Syslog is: You do not call "setlogsock".
The Third Rule of Sys::Syslog is: The program crashes, "die"s, calls "closelog", the log is over.
The Fourth Rule of Sys::Syslog is: One facility, one priority.
The Fifth Rule of Sys::Syslog is: One log at a time.
The Sixth Rule of Sys::Syslog is: No "syslog" before "openlog".
The Seventh Rule of Sys::Syslog is: Logs will go on as long as they have to.
The Eighth, and Final Rule of Sys::Syslog is: If this is your first use of Sys::Syslog, you must read the doc.
An example:
openlog($program, 'cons,pid', 'user');
syslog('info', '%s', 'this is another test');
syslog('mail|warning', 'this is a better test: %d', time);
closelog();
syslog('debug', 'this is the last test');
Another example:
openlog("$program $$", 'ndelay', 'user');
syslog('notice', 'fooprogram: this is really done');
Example of use of %m:
$! = 55;
syslog('info', 'problem was %m'); # %m == $! in syslog(3)
Log to UDP port on $remotehost instead of logging locally:
setlogsock("udp", $remotehost);
openlog($program, 'ndelay', 'user');
syslog('info', 'something happened over here');
"Sys::Syslog" is a core module, part of the standard Perl distribution since 1990. At this time, modules as we know them didn't exist, the Perl library was a collection of .pl files, and the one for sending syslog messages with was simply lib/syslog.pl, included with Perl 3.0. It was converted as a module with Perl 5.0, but had a version number only starting with Perl 5.6. Here is a small table with the matching Perl and "Sys::Syslog" versions.
Sys::Syslog Perl
----------- ----
undef 5.0.0 ~ 5.5.4
0.01 5.6.*
0.03 5.8.0
0.04 5.8.1, 5.8.2, 5.8.3
0.05 5.8.4, 5.8.5, 5.8.6
0.06 5.8.7
0.13 5.8.8
0.22 5.10.0
0.27 5.8.9, 5.10.1 ~ 5.14.*
0.29 5.16.*
0.32 5.18.*
0.33 5.20.*
0.33 5.22.*
Log::Log4perl - Perl implementation of the Log4j API
Log::Dispatch - Dispatches messages to one or more outputs
Log::Report - Report a problem, with exceptions and language support
syslog(3)
SUSv3 issue 6, IEEE Std 1003.1, 2004 edition, <http://www.opengroup.org/onlinepubs/000095399/basedefs/syslog.h.html>
GNU C Library documentation on syslog, <http://www.gnu.org/software/libc/manual/html_node/Syslog.html>
FreeBSD documentation on syslog, <https://www.freebsd.org/cgi/man.cgi?query=syslog>
Solaris 11 documentation on syslog, <https://docs.oracle.com/cd/E53394_01/html/E54766/syslog-3c.html>
Mac OS X documentation on syslog, <http://developer.apple.com/documentation/Darwin/Reference/ManPages/man3/syslog.3.html>
IRIX documentation on syslog, <http://nixdoc.net/man-pages/IRIX/man3/syslog.3c.html>
AIX 5L 5.3 documentation on syslog, <http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.basetechref/doc/basetrf2/syslog.htm>
HP-UX 11i documentation on syslog, <http://docs.hp.com/en/B2355-60130/syslog.3C.html>
Tru64 documentation on syslog, <http://nixdoc.net/man-pages/Tru64/man3/syslog.3.html>
Stratus VOS 15.1, <http://stratadoc.stratus.com/vos/15.1.1/r502-01/wwhelp/wwhimpl/js/html/wwhelp.htm?context=r502-01&file=ch5r502-01bi.html>
RFC 3164 - The BSD syslog Protocol, <http://www.faqs.org/rfcs/rfc3164.html> -- Please note that this is an informational RFC, and therefore does not specify a standard of any kind.
RFC 3195 - Reliable Delivery for syslog, <http://www.faqs.org/rfcs/rfc3195.html>
Syslogging with Perl, <http://lexington.pm.org/meetings/022001.html>
Windows Event Log, <http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wes/wes/windows_event_log.asp>
Tom Christiansen <tchrist (at) perl.com> and Larry Wall <larry (at) wall.org>.
UNIX domain sockets added by Sean Robinson <robinson_s (at) sc.maricopa.edu> with support from Tim Bunce <Tim.Bunce (at) ig.co.uk> and the "perl5-porters" mailing list.
Dependency on syslog.ph replaced with XS code by Tom Hughes <tom (at) compton.nu>.
Code for "constant()"s regenerated by Nicholas Clark <nick (at) ccl4.org>.
Failover to different communication modes by Nick Williams <Nick.Williams (at) morganstanley.com>.
Extracted from core distribution for publishing on the CPAN by Sebastien Aperghis-Tramoni <sebastien (at) aperghis.net>.
XS code for using native C functions borrowed from "Unix::Syslog", written by Marcus Harnisch <marcus.harnisch (at) gmx.net>.
Yves Orton suggested and helped for making "Sys::Syslog" use the native event logger under Win32 systems.
Jerry D. Hedden and Reini Urban provided greatly appreciated help to debug and polish "Sys::Syslog" under Cygwin.
Please report any bugs or feature requests to "bug-sys-syslog (at) rt.cpan.org", or through the web interface at <http://rt.cpan.org/Public/Dist/Display.html?Name=Sys-Syslog>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Sys::Syslog
You can also look for information at:
<http://perldoc.perl.org/Sys/Syslog.html>
<https://metacpan.org/module/Sys::Syslog>
<http://search.cpan.org/dist/Sys-Syslog/>
<http://annocpan.org/dist/Sys-Syslog>
<http://cpanratings.perl.org/d/Sys-Syslog>
<http://rt.cpan.org/Dist/Display.html?Queue=Sys-Syslog>
The source code is available on Git Hub: <https://github.com/maddingue/Sys-Syslog/>
Copyright (C) 1990-2012 by Larry Wall and others.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 2022-02-19 | perl v5.34.1 |