From: Lennart Poettering Date: Tue, 20 Nov 2012 21:09:09 +0000 (+0100) Subject: journal: document new catalog APIs X-Git-Tag: v196~5 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=f2cf0403c99e8fa44c14b0ef70af90801f8681f0 journal: document new catalog APIs --- diff --git a/Makefile.am b/Makefile.am index 578496206..5cc3d2054 100644 --- a/Makefile.am +++ b/Makefile.am @@ -535,7 +535,8 @@ MANPAGES = \ man/sd_journal_get_usage.3 \ man/sd_journal_add_match.3 \ man/sd_journal_seek_head.3 \ - man/sd_journal_query_unique.3 + man/sd_journal_query_unique.3 \ + man/sd_journal_get_catalog.3 MANPAGES_ALIAS = \ man/reboot.8 \ @@ -610,7 +611,8 @@ MANPAGES_ALIAS = \ man/sd_journal_test_cursor.3 \ man/sd_journal_enumerate_unique.3 \ man/sd_journal_restart_unique.3 \ - man/SD_JOURNAL_FOREACH_UNIQUE.3 + man/SD_JOURNAL_FOREACH_UNIQUE.3 \ + man/sd_journal_get_catalog_for_message_id.3 if HAVE_KMOD MANPAGES += \ @@ -694,6 +696,7 @@ man/sd_journal_test_cursor.3: man/sd_journal_get_cursor.3 man/sd_journal_enumerate_unique.3: man/sd_journal_query_unique.3 man/sd_journal_restart_unique.3: man/sd_journal_query_unique.3 man/SD_JOURNAL_FOREACH_UNIQUE.3: man/sd_journal_query_unique.3 +man/sd_journal_get_catalog_for_message_id.3: man/sd_journal_get_catalog.3 XML_FILES = \ ${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubst %.7,%.xml,${patsubst %.8,%.xml,$(MANPAGES)}}}}} diff --git a/man/sd-journal.xml b/man/sd-journal.xml index 1beb9a5c7..a7220ec6b 100644 --- a/man/sd-journal.xml +++ b/man/sd-journal.xml @@ -79,7 +79,8 @@ sd_journal_seek_head3, sd_journal_get_cursor3, sd_journal_cutoff_realtime_usec3, - sd_journal_get_usage3 + sd_journal_get_usage3, + sd_journal_get_catalog3 and sd_journal_get_fd3 for more information about the functions @@ -121,6 +122,7 @@ sd_journal_get_usage3, sd_journal_get_fd3, sd_journal_query_unique3, + sd_journal_get_catalog3, journalctl1, sd-id1283, pkg-config1 diff --git a/man/sd_journal_get_catalog.xml b/man/sd_journal_get_catalog.xml new file mode 100644 index 000000000..fa9bbc9b2 --- /dev/null +++ b/man/sd_journal_get_catalog.xml @@ -0,0 +1,136 @@ + + + + + + + + + sd_journal_get_catalog + systemd + + + + Developer + Lennart + Poettering + lennart@poettering.net + + + + + + sd_journal_get_catalog + 3 + + + + sd_journal_get_catalog + sd_journal_get_catalog_for_message_id + Retrieve message catalog entry + + + + + #include <systemd/sd-journal.h> + + + int sd_journal_get_catalog + sd_journal* j + const char** ret + + + + int sd_journal_get_catalog_for_message_id + sd_id128_t id + const char** ret + + + + + + + + Description + + sd_journal_get_catalog() + retrieves a message catalog entry for the current + journal entry. This will look up an entry in the + message catalog by using the + MESSAGE_ID= field of the current + journal entry. Before returning the entry all journal + field names in the catalog entry text enclosed in "@" + will be replaced by the respective field values of the + current entry. If a field name referenced in the + message catalog entry does not exist it the current + journal entry the "@" will be removed but the field + name otherwise left untouched. + + sd_journal_get_catalog_for_message_id() + works similar to + sd_journal_get_catalog() but the + entry is looked up by the specified message ID (no + open journal context is necessary for this), and no + field substitution is done. + + For more information about the journal message + catalog please refer to the Journal + Message Catalogs documentation page. + + + + Return Value + + sd_journal_get_catalog() + and + sd_journal_get_catalog_for_message_id() + returns 0 on success or a negative errno-style error + code. If no matching message catalog entry is found + -ENOENT is returned. + + + + Notes + + The sd_journal_get_catalog() and + sd_journal_get_catalog_for_message_id() + interfaces are available as shared library, which can + be compiled and linked to with the + libsystemd-journal + pkg-config1 + file. + + + + See Also + + + systemd1, + systemd.journal-fields7, + sd-journal3, + sd_journal_open3, + sd_journal_next3, + sd_journal_get_data3 + + + +