2012-07-13 04:18:45 +04:00
<?xml version='1.0'?> <!-- * - nxml - * -->
2019-03-14 16:40:58 +03:00
< !DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
2023-12-25 17:48:33 +03:00
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
2020-11-09 07:23:58 +03:00
<!-- SPDX - License - Identifier: LGPL - 2.1 - or - later -->
2012-07-13 04:18:45 +04:00
2018-06-06 12:59:04 +03:00
<refentry id= "sd_journal_stream_fd" xmlns:xi= "http://www.w3.org/2001/XInclude" >
2012-07-13 04:18:45 +04:00
2015-02-04 05:14:13 +03:00
<refentryinfo >
<title > sd_journal_stream_fd</title>
<productname > systemd</productname>
</refentryinfo>
<refmeta >
<refentrytitle > sd_journal_stream_fd</refentrytitle>
<manvolnum > 3</manvolnum>
</refmeta>
<refnamediv >
<refname > sd_journal_stream_fd</refname>
2024-03-13 13:50:23 +03:00
<refname > sd_journal_stream_fd_with_namespace</refname>
2015-02-04 05:14:13 +03:00
<refpurpose > Create log stream file descriptor to the journal</refpurpose>
</refnamediv>
<refsynopsisdiv >
<funcsynopsis >
<funcsynopsisinfo > #include < systemd/sd-journal.h> </funcsynopsisinfo>
<funcprototype >
<funcdef > int <function > sd_journal_stream_fd</function> </funcdef>
<paramdef > const char *<parameter > identifier</parameter> </paramdef>
<paramdef > int <parameter > priority</parameter> </paramdef>
<paramdef > int <parameter > level_prefix</parameter> </paramdef>
</funcprototype>
2024-03-13 13:50:23 +03:00
<funcprototype >
<funcdef > int <function > sd_journal_stream_fd_with_namespace</function> </funcdef>
<paramdef > const char *<parameter > name_space</parameter> </paramdef>
<paramdef > const char *<parameter > identifier</parameter> </paramdef>
<paramdef > int <parameter > priority</parameter> </paramdef>
<paramdef > int <parameter > level_prefix</parameter> </paramdef>
</funcprototype>
2015-02-04 05:14:13 +03:00
</funcsynopsis>
</refsynopsisdiv>
<refsect1 >
<title > Description</title>
2024-03-13 13:50:23 +03:00
<para > <function > sd_journal_stream_fd()</function> may be used to create a log stream file descriptor.
Log messages written to this file descriptor as simple newline-separated text strings are written
to the journal. This file descriptor can be used internally by applications or be made standard output
or standard error of other processes executed.</para>
2015-02-04 05:14:13 +03:00
2024-03-13 13:50:23 +03:00
<para > <function > sd_journal_stream_fd()</function> takes a short program identifier string as
first argument, which will be written to the journal as SYSLOG_IDENTIFIER= field for each log entry
2015-02-04 05:14:13 +03:00
(see
<citerefentry > <refentrytitle > systemd.journal-fields</refentrytitle> <manvolnum > 7</manvolnum> </citerefentry>
2024-03-13 13:50:23 +03:00
for more information). The second argument shall be the default priority level for all messages.
The priority level is one of
2015-02-04 05:14:13 +03:00
<constant > LOG_EMERG</constant> , <constant > LOG_ALERT</constant> ,
<constant > LOG_CRIT</constant> , <constant > LOG_ERR</constant> ,
<constant > LOG_WARNING</constant> , <constant > LOG_NOTICE</constant> ,
<constant > LOG_INFO</constant> , <constant > LOG_DEBUG</constant> , as
defined in <filename > syslog.h</filename> , see
<citerefentry project= 'man-pages' > <refentrytitle > syslog</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry>
for details. The third argument is a boolean: if true kernel-style
log level prefixes (such as <constant > SD_WARNING</constant> ) are
interpreted, see
<citerefentry > <refentrytitle > sd-daemon</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry>
for more information.</para>
2024-03-13 13:50:23 +03:00
<para > <function > sd_journal_stream_fd_with_namespace()</function> is similar to
<function > sd_journal_stream_fd()</function> , but takes an additional <parameter > name_space</parameter> parameter
that specifies which journal namespace to operate on. If specified as <constant > NULL</constant> the call
is identical to <function > sd_journal_stream_fd()</function> . For details about journal namespaces, see
<citerefentry > <refentrytitle > systemd-journald.service</refentrytitle> <manvolnum > 8</manvolnum> </citerefentry> .</para>
<para > It is recommended that applications log UTF-8 messages only with this API, but this is not enforced.</para>
2018-01-23 21:06:21 +03:00
2024-03-13 13:50:23 +03:00
<para > Each invocation of these functions allocates a new log stream file descriptor,
that is not shared with prior or later invocations. The file descriptor is write-only (its reading direction
is shut down), and <constant > O_NONBLOCK</constant> is turned off initially.</para>
2015-02-04 05:14:13 +03:00
</refsect1>
<refsect1 >
<title > Return Value</title>
2024-03-13 13:50:23 +03:00
<para > The call returns a valid write-only file descriptor on success or a negative errno-style error code.</para>
2015-02-04 05:14:13 +03:00
</refsect1>
2018-01-21 12:51:55 +03:00
<refsect1 >
<title > Signal safety</title>
2024-03-13 13:50:23 +03:00
<para > <function > sd_journal_stream_fd()</function> and <function > sd_journal_stream_fd_with_namespace()</function>
are "async signal safe" in the meaning of <citerefentry
2018-01-23 21:09:54 +03:00
project='man-pages'><refentrytitle > signal-safety</refentrytitle> <manvolnum > 7</manvolnum> </citerefentry> .
2018-01-21 12:51:55 +03:00
</para>
</refsect1>
2015-02-04 05:14:13 +03:00
<refsect1 >
<title > Notes</title>
2018-08-03 17:43:30 +03:00
<xi:include href= "threads-aware.xml" xpointer= "safe" />
2016-10-15 22:24:55 +03:00
2018-06-06 12:59:04 +03:00
<xi:include href= "libsystemd-pkgconfig.xml" xpointer= "pkgconfig-text" />
2015-02-04 05:14:13 +03:00
</refsect1>
<refsect1 >
<title > Examples</title>
<para > Creating a log stream suitable for
<citerefentry project= 'man-pages' > <refentrytitle > fprintf</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> :</para>
2022-10-10 10:18:26 +03:00
<programlisting > <xi:include href= "journal-stream-fd.c" parse= "text" /> </programlisting>
2015-02-04 05:14:13 +03:00
</refsect1>
2023-09-04 15:46:35 +03:00
<refsect1 >
<title > History</title>
<para > <function > sd_journal_stream_fd()</function> was added in version 187.</para>
2024-03-13 13:50:23 +03:00
<para > <function > sd_journal_stream_fd_with_namespace()</function> was added in version 256.</para>
2023-09-04 15:46:35 +03:00
</refsect1>
2015-02-04 05:14:13 +03:00
<refsect1 >
<title > See Also</title>
2023-12-22 21:09:32 +03:00
<para > <simplelist type= "inline" >
<member > <citerefentry > <refentrytitle > systemd</refentrytitle> <manvolnum > 1</manvolnum> </citerefentry> </member>
<member > <citerefentry > <refentrytitle > sd-journal</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> </member>
<member > <citerefentry > <refentrytitle > sd-daemon</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> </member>
<member > <citerefentry > <refentrytitle > sd_journal_print</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> </member>
<member > <citerefentry project= 'man-pages' > <refentrytitle > syslog</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> </member>
<member > <citerefentry project= 'man-pages' > <refentrytitle > fprintf</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> </member>
<member > <citerefentry > <refentrytitle > systemd.journal-fields</refentrytitle> <manvolnum > 7</manvolnum> </citerefentry> </member>
</simplelist> </para>
2015-02-04 05:14:13 +03:00
</refsect1>
2012-07-13 04:18:45 +04:00
</refentry>