1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
<!-- Creator : groff version 1.18.1 -->
<!-- CreationDate: Sun Apr 13 19:11:28 2008 -->
<html>
<head>
<meta name="generator" content="groff -Thtml, see www.gnu.org">
<meta name="Content-Style" content="text/css">
<title>tcl-syslog</title>
</head>
<body>
<h1 align=center>tcl-syslog</h1>
<a href="#NAME">NAME</a><br>
<a href="#SYNOPSIS">SYNOPSIS</a><br>
<a href="#DESCRIPTION">DESCRIPTION</a><br>
<a href="#EXAMPLE">EXAMPLE</a><br>
<a href="#OUTPUT">OUTPUT</a><br>
<a href="#AUTHOR">AUTHOR</a><br>
<a href="#COPYRIGHT">COPYRIGHT</a><br>
<hr>
<a name="NAME"></a>
<h2>NAME</h2>
<!-- INDENTATION -->
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td>
<td width="89%">
<p>tcl−syslog − Syslog interface for Tcl</p>
</td>
</table>
<a name="SYNOPSIS"></a>
<h2>SYNOPSIS</h2>
<!-- INDENTATION -->
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td>
<td width="89%">
<p><b>package require syslog</b></p>
<!-- INDENTATION -->
<p><b>syslog ?−ident</b> <i>ident</i><b>?
?−facility</b> <i>facility</i><b>?</b> <i>priority
message</i><br>
Returns: nothing</p>
</td>
</table>
<a name="DESCRIPTION"></a>
<h2>DESCRIPTION</h2>
<!-- INDENTATION -->
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td>
<td width="89%">
<p>This project provides a Tcl interface to the standard
*nix syslog service. It implements a Tcl package that
exports the full functionality of the underlying syslog
facility to the Tcl programming language. This includes
local and remote logging.</p>
<!-- INDENTATION -->
<p>Syslog is a standard for forwarding log messages in an IP
network. It is also used to refer to the implementation of
this standard and API, that supports both remote and local
logging. It is typically used for computer system management
and security auditing; usually to aggregate log messages in
a central repository. It is standardized within the Syslog
working group of the IETF.</p>
<!-- INDENTATION -->
<p>Syslog is available in all POSIX compliant and
POSIX−like Operating Systems.</p>
<!-- INDENTATION -->
<p><i>ident</i> is a optional string argument that is used
by syslog to differentiate between processes and log
contexts. It is up to the user to specify any Tcl string
here.</p>
<!-- INDENTATION -->
<p><i>facility</i> is an optional string dictated by syslog,
and categorizes the entity that logs the message, in the
following categories/facilities:</p>
<!-- INDENTATION -->
<pre> Facility Description
auth security/authorization messages
authpriv security/authorization messages (private)
cron clock daemon (cron and at)
daemon system daemons without separate facility value
ftp ftp daemon
kern kernel messages
local[0−7] local0 to local7 are reserved for local use
lrp line printer subsystem
mail mail subsystem
news USENET news subsystem
syslog messages generated internally by syslogd(8)
user generic user−level messages
uucp UUCP subsystem
The default facility is "user".
<i>priority</i> is another string dictated by syslog, that describes
the severity of the message. In order of higher to lower severity, the
possible strings are:
Priority Description
emergency system is unusable
alert action must be taken immediately
critical critical conditions
error error conditions
warning warning conditions
notice normal, but significant, condition
info informational message
debug debug−level message
This argument is mandatory.
</pre>
</td>
</table>
<a name="EXAMPLE"></a>
<h2>EXAMPLE</h2>
<!-- INDENTATION -->
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td>
<td width="89%">
<pre>package require syslog
syslog critical "Message 1"
syslog −ident tclsh warning "Message 2"
syslog −facility local0 notice "Message 3"
syslog −ident tclsh −facility user error "Message 4"
if {! [catch {syslog −ident tclsh −facility user3 error "Message"}]} {
error
}
if {! [catch {syslog −ident tclsh −facility user error3 "Message"}]} {
error
}
</pre>
</td>
</table>
<a name="OUTPUT"></a>
<h2>OUTPUT</h2>
<!-- INDENTATION -->
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td>
<td width="89%">
<pre>In /var/log/messages:
Feb 29 14:03:15 localhost tclsh: Message 1
Feb 29 14:03:15 localhost tclsh: Message 2
Feb 29 14:03:55 localhost tclsh: Message 1
Feb 29 14:03:55 localhost tclsh: Message 2
Feb 29 14:03:55 localhost tclsh: Message 3
</pre>
</td>
</table>
<a name="AUTHOR"></a>
<h2>AUTHOR</h2>
<!-- INDENTATION -->
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td>
<td width="89%">
<p>Alexandros Stergiakis sterg@kth.se</p>
</td>
</table>
<a name="COPYRIGHT"></a>
<h2>COPYRIGHT</h2>
<!-- INDENTATION -->
<table width="100%" border=0 rules="none" frame="void"
cols="2" cellspacing="0" cellpadding="0">
<tr valign="top" align="left">
<td width="10%"></td>
<td width="89%">
<p>Copyright (C) 2008 Alexandros Stergiakis</p>
<!-- INDENTATION -->
<p>This program is free software: you can redistribute it
and/or<br>
modify it under the terms of the GNU General Public License
as<br>
published by the Free Software Foundation, either version 3
of<br>
the License, or (at your option) any later version.</p>
<!-- INDENTATION -->
<p>This program is distributed in the hope that it will be
useful,<br>
but WITHOUT ANY WARRANTY; without even the implied warranty
of<br>
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
the<br>
GNU General Public License for more details.</p>
<!-- INDENTATION -->
<p>You should have received a copy of the GNU General Public
License<br>
along with this program. If not, see
<http://www.gnu.org/licenses/>.</p>
</td>
</table>
<hr>
</body>
</html>
|