~ubuntu-branches/ubuntu/trusty/systemd/trusty

« back to all changes in this revision

Viewing changes to man/sd_journal_send.html

Tags: upstream-202
Import upstream version 202

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>sd_journal_print</title><meta name="generator" content="DocBook XSL Stylesheets V1.77.1"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><a href="index.html">Index </a>·
 
2
  <a href="systemd.directives.html">Directives </a>·
 
3
  <a href="../python-systemd/index.html">Python </a>·
 
4
  <a href="../libudev/index.html">libudev </a>·
 
5
  <a href="../libudev/index.html">gudev </a><span style="float:right">systemd 202</span><hr><div class="refentry"><a name="sd_journal_print"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>sd_journal_print, sd_journal_printv, sd_journal_send, sd_journal_sendv, sd_journal_perror, SD_JOURNAL_SUPPRESS_LOCATION — Submit log entries to the journal</p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><div class="funcsynopsis"><pre class="funcsynopsisinfo">#include &lt;systemd/sd-journal.h&gt;</pre><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">int <b class="fsfunc">sd_journal_print</b>(</code></td><td>int <var class="pdparam">priority</var>, </td></tr><tr><td> </td><td>const char* <var class="pdparam">format</var>, </td></tr><tr><td> </td><td>...<code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">int <b class="fsfunc">sd_journal_printv</b>(</code></td><td>int <var class="pdparam">priority</var>, </td></tr><tr><td> </td><td>const char* <var class="pdparam">format</var>, </td></tr><tr><td> </td><td>va_list <var class="pdparam">ap</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">int <b class="fsfunc">sd_journal_send</b>(</code></td><td>const char* <var class="pdparam">format</var>, </td></tr><tr><td> </td><td>...<code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">int <b class="fsfunc">sd_journal_sendv</b>(</code></td><td>const struct iovec *<var class="pdparam">iov</var>, </td></tr><tr><td> </td><td>int <var class="pdparam">n</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">int <b class="fsfunc">sd_journal_perror</b>(</code></td><td>const char* <var class="pdparam">message</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div></div></div><div class="refsect1"><a name="idp27120"></a><h2>Description</h2><p><code class="function">sd_journal_print()</code> may be
 
6
                used to submit simple, plain text log entries to the
 
7
                system journal. The first argument is a priority
 
8
                value. This is followed by a format string and its
 
9
                parameters, similar to
 
10
                <a href="printf.html"><span class="citerefentry"><span class="refentrytitle">printf</span>(3)</span></a>
 
11
                or
 
12
                <a href="syslog.html"><span class="citerefentry"><span class="refentrytitle">syslog</span>(3)</span></a>. The
 
13
                priority value is one of
 
14
                <code class="literal">LOG_EMERG</code>,
 
15
                <code class="literal">LOG_ALERT</code>,
 
16
                <code class="literal">LOG_CRIT</code>,
 
17
                <code class="literal">LOG_ERR</code>,
 
18
                <code class="literal">LOG_WARNING</code>,
 
19
                <code class="literal">LOG_NOTICE</code>,
 
20
                <code class="literal">LOG_INFO</code>,
 
21
                <code class="literal">LOG_DEBUG</code>, as defined in
 
22
                <code class="filename">syslog.h</code>, see
 
23
                <a href="syslog.html"><span class="citerefentry"><span class="refentrytitle">syslog</span>(3)</span></a>
 
24
                for details. It is recommended to use this call to
 
25
                submit log messages in the application locale or system
 
26
                locale and in UTF-8 format, but no such restrictions
 
27
                are enforced.</p><p><code class="function">sd_journal_printv()</code> is
 
28
                similar to <code class="function">sd_journal_print()</code> but
 
29
                takes a variable argument list encapsulated in an
 
30
                object of type <code class="literal">va_list</code> (see
 
31
                <a href="stdarg.html"><span class="citerefentry"><span class="refentrytitle">stdarg</span>(3)</span></a>
 
32
                for more information) instead of the format string. It
 
33
                is otherwise equivalent in behavior.</p><p><code class="function">sd_journal_send()</code> may be
 
34
                used to submit structured log entries to the system
 
35
                journal. It takes a series of format strings, each
 
36
                immediately followed by their associated parameters,
 
37
                terminated by NULL. The strings passed should be of
 
38
                the format <code class="literal">VARIABLE=value</code>. The
 
39
                variable name must be in uppercase and consist only of
 
40
                characters, numbers and underscores, and may not begin
 
41
                with an underscore. (All assignments that do not
 
42
                follow this syntax will be ignored.) The value can be
 
43
                of any size and format. It is highly recommended to
 
44
                submit text strings formatted in the UTF-8 character
 
45
                encoding only, and submit binary fields only when
 
46
                formatting in UTf-8 strings is not sensible. A number
 
47
                of well known fields are defined, see
 
48
                <a href="systemd.journal-fields.html"><span class="citerefentry"><span class="refentrytitle">systemd.journal-fields</span>(7)</span></a>
 
49
                for details, but additional application defined fields
 
50
                may be used. A variable may be assigned more than one
 
51
                value per entry.</p><p><code class="function">sd_journal_sendv()</code> is
 
52
                similar to <code class="function">sd_journal_send()</code> but
 
53
                takes an array of <code class="literal">struct iovec</code> (as
 
54
                defined in <code class="filename">uio.h</code>, see
 
55
                <a href="readv.html"><span class="citerefentry"><span class="refentrytitle">readv</span>(3)</span></a>
 
56
                for details) instead of the format string. Each
 
57
                structure should reference one field of the entry to
 
58
                submit. The second argument specifies the number of
 
59
                structures in the
 
60
                array. <code class="function">sd_journal_sendv()</code> is
 
61
                particularly useful to submit binary objects to the
 
62
                journal where that is necessary.</p><p><code class="function">sd_journal_perror()</code> is a
 
63
                similar to
 
64
                <a href="perror.html"><span class="citerefentry"><span class="refentrytitle">perror</span>(3)</span></a>
 
65
                and writes a message to the journal that consists of
 
66
                the passed string, suffixed with ": " and a human
 
67
                readable representation of the current error code
 
68
                stored in
 
69
                <a href="errno.html"><span class="citerefentry"><span class="refentrytitle">errno</span>(3)</span></a>. If
 
70
                the message string is passed as NULL or empty string
 
71
                only the error string representation will be written,
 
72
                prefixed with nothing. An additional journal field
 
73
                ERRNO= is included in the entry containing the numeric
 
74
                error code formatted as decimal string. The log
 
75
                priority used is <code class="literal">LOG_ERR</code> (3).</p><p>Note that <code class="function">sd_journal_send()</code>
 
76
                is a wrapper around
 
77
                <code class="function">sd_journal_sendv()</code> to make it
 
78
                easier to use when only text strings shall be
 
79
                submitted. Also, the following two calls are
 
80
                mostly equivalent:</p><pre class="programlisting">sd_journal_print(LOG_INFO, "Hello World, this is PID %lu!", (unsigned long) getpid());
 
81
 
 
82
sd_journal_send("MESSAGE=Hello World, this is PID %lu!", (unsigned long) getpid(),
 
83
                "PRIORITY=%i", LOG_INFO,
 
84
                NULL);</pre><p>Note that these calls implicitly add fields for
 
85
                the source file, function name and code line where
 
86
                invoked. This is implemented with macros. If this is
 
87
                not desired it can be turned off by defining
 
88
                SD_JOURNAL_SUPPRESS_LOCATION before including
 
89
                <code class="filename">sd-journal.h</code>.</p><p><a href="syslog.html"><span class="citerefentry"><span class="refentrytitle">syslog</span>(3)</span></a>
 
90
                and <code class="function">sd_journal_print()</code> may
 
91
                largely be used interchangeably
 
92
                functionality-wise. However, note that log messages
 
93
                logged via the former take a different path to the
 
94
                journal server than the later, and hence global
 
95
                chronological ordering between the two streams cannot
 
96
                be guaranteed. Using
 
97
                <code class="function">sd_journal_print()</code> has the
 
98
                benefit of logging source code line, file names, and
 
99
                functions as meta data along all entries, and
 
100
                guaranteeing chronological ordering with structured
 
101
                log entries that are generated via
 
102
                <code class="function">sd_journal_send()</code>. Using
 
103
                <code class="function">syslog()</code> has the benefit of being
 
104
                more portable.</p></div><div class="refsect1"><a name="idp70144"></a><h2>Return Value</h2><p>The four calls return 0 on success or a negative
 
105
                errno-style error code. The
 
106
                <a href="errno.html"><span class="citerefentry"><span class="refentrytitle">errno</span>(3)</span></a>
 
107
                variable itself is not altered.</p></div><div class="refsect1"><a name="idp5036240"></a><h2>Notes</h2><p>The <code class="function">sd_journal_print()</code>,
 
108
                <code class="function">sd_journal_printv()</code>,
 
109
                <code class="function">sd_journal_send()</code> and
 
110
                <code class="function">sd_journal_sendv()</code> interfaces
 
111
                are available as shared library, which can be compiled
 
112
                and linked to with the
 
113
                <code class="literal">libsystemd-journal</code>
 
114
                <a href="pkg-config.html"><span class="citerefentry"><span class="refentrytitle">pkg-config</span>(1)</span></a>
 
115
                file.</p></div><div class="refsect1"><a name="idp5041440"></a><h2>See Also</h2><p>
 
116
                        <a href="systemd.html"><span class="citerefentry"><span class="refentrytitle">systemd</span>(1)</span></a>,
 
117
                        <a href="sd-journal.html"><span class="citerefentry"><span class="refentrytitle">sd-journal</span>(3)</span></a>,
 
118
                        <a href="sd_journal_stream_fd.html"><span class="citerefentry"><span class="refentrytitle">sd_journal_stream_fd</span>(3)</span></a>,
 
119
                        <a href="syslog.html"><span class="citerefentry"><span class="refentrytitle">syslog</span>(3)</span></a>,
 
120
                        <a href="perror.html"><span class="citerefentry"><span class="refentrytitle">perror</span>(3)</span></a>,
 
121
                        <a href="errno.html"><span class="citerefentry"><span class="refentrytitle">errno</span>(3)</span></a>,
 
122
                        <a href="systemd.journal-fields.html"><span class="citerefentry"><span class="refentrytitle">systemd.journal-fields</span>(7)</span></a>
 
123
                </p></div></div></body></html>