logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

sd_journal_get_usage - Journal disk usage

Description

sd_journal_get_usage() determines the total disk space currently used by journal files (in bytes). If SD_JOURNAL_LOCAL_ONLY was passed when opening the journal, this value will only reflect the size of journal files of the local host, otherwise of all hosts.

History

sd_journal_get_usage() was added in version 190.

Name

sd_journal_get_usage - Journal disk usage

Notes

All functions listed here are thread-agnostic and only a single specific thread may operate on a given object during its entire lifetime. It is safe to allocate multiple independent objects and use each from a specific thread in parallel. However, it is not safe to allocate such an object in one thread, and operate or free it from any other, even if locking is used to ensure these threads do not operate on it at the very same time. Functions described here are available as a shared library, which can be compiled against and linked to with the libsystemdpkg-config(1) file.

Return Value

sd_journal_get_usage() returns 0 on success or a negative errno-style error code.

See Also

systemd(1), sd-journal(3), sd_journal_open(3) systemd 257.7 SD_JOURNAL_GET_USAGE(3)

Synopsis

#include<systemd/sd-journal.h>intsd_journal_get_usage(sd_journal*j,uint64_t*bytes);

See Also