diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:27:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:27:18 +0000 |
commit | f7f20c3f5e0be02585741f5f54d198689ccd7866 (patch) | |
tree | 190d5e080f6cbcc40560b0ceaccfd883cb3faa01 /source/configuration/modules/imsolaris.rst | |
parent | Initial commit. (diff) | |
download | rsyslog-doc-f7f20c3f5e0be02585741f5f54d198689ccd7866.tar.xz rsyslog-doc-f7f20c3f5e0be02585741f5f54d198689ccd7866.zip |
Adding upstream version 8.2402.0+dfsg.upstream/8.2402.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'source/configuration/modules/imsolaris.rst')
-rw-r--r-- | source/configuration/modules/imsolaris.rst | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/source/configuration/modules/imsolaris.rst b/source/configuration/modules/imsolaris.rst new file mode 100644 index 0000000..f215714 --- /dev/null +++ b/source/configuration/modules/imsolaris.rst @@ -0,0 +1,59 @@ +******************************* +imsolaris: Solaris Input Module +******************************* + +=========================== =========================================================================== +**Module Name:** **imsolaris** +**Author:** `Rainer Gerhards <https://rainer.gerhards.net/>`_ <rgerhards@adiscon.com> +=========================== =========================================================================== + + +Purpose +======= + +Reads local Solaris log messages including the kernel log. + +This module is specifically tailored for Solaris. Under Solaris, there +is no special kernel input device. Instead, both kernel messages as well +as messages emitted via syslog() are received from a single source. + +This module obeys the Solaris door() mechanism to detect a running +syslogd instance. As such, only one can be active at one time. If it +detects another active instance at startup, the module disables itself, +but rsyslog will continue to run. + + +Configuration Parameters +======================== + +.. note:: + + Parameter names are case-insensitive. + + +|FmtObsoleteName| Directives +---------------------------- + +| functions:: $IMSolarisLogSocketName <name> + + This is the name of the log socket (stream) to read. If not given, + /dev/log is read. + + +Caveats/Known Bugs +================== + +None currently known. For obvious reasons, works on Solaris, only (and +compilation will most probably fail on any other platform). + + +Examples +======== + +The following sample pulls messages from the default log source + +.. code-block:: none + + $ModLoad imsolaris + + |