Logging formatter to tell Journald's streams the correct severity level
Project description
This Python module adds a prefix to log lines so that Journald knows which log level it comes from.
Features:
- Can handle custom levels as well as Python's five standard ones.
- Ensures that each line of a multiline log message is correctly prefixed.
- Also applies a prefix to uncaught exceptions.
- And prefixes any messages from the
warningsmodule.
Usage in your Application
Install the latest stable version with
$ pip install priorityprefix
Or install the cutting-edge version with
$ pip install git+https://github.com/pscl4rke/priorityprefix.git
If you've already got a Formatter object for logging then you
can wrap it with FormattingWrapper:
import priorityprefix
my_formatter = priorityprefix.FormattingWrapper(my_formatter)
For lightweight usage there is an install function which integrates
nicely with basicConfig from the standard library
import logging
logging.basicConfig(level=logging.INFO)
import priorityprefix
priorityprefix.install()
By default install() will also override sys.excepthook
so that any uncaught exceptions will get an error priority prefix added to
their traceback before getting dumped to stderr.
Also, by default install() will also override warnings.formatwarning
so that things like a DeprecationWarning will get a warning priority prefix
before getting emitted.
Note that the logging library does not have a level that corresponds with
systemd's NOTICE level.
However you can create a custom level with a value of 25 to emit log
records that are notices:
NOTICE = 25
my_logger.log(NOTICE, "Message goes here")
If using dictConfig(...) then you can use the PriorityFormatter class.
Any keyword arguments you pass it will be passed straight through to a
logging.Formatter class it creates behind the scenes:
{
"version": 1,
"formatters": {
"default": {
"()": "priorityprefix.PriorityFormatter",
"fmt": "%(name)s:%(lineno)s %(levelname)s %(message)s"
}
},
}
Usage with Journald
In short, you shouldn't need to change anything.
If setting up a Systemd service then you need to have the following settings in your service definition:
StandardOutput=journal
StandardError=journal
SyslogLevelPrefix=true
However these are the defaults, so you don't normally need to change anything.
Similarly,
if you feed output through systemd-cat
(which fulfils the same role as logger)
then --level-prefix will also be enabled by default.
However if you are combining Systemd with Podman containers using Quadlets
then you need to ensure LogDriver=passthrough is set.
Then output lines from your contained application(s) will be
logged in the host's journal with the correct priority levels.
The Back-Story
To get your log messages into Systemd's Journald you have a number of options:
- Send legacy Syslog datagrams to
/dev/logand rely on Journald listening there and translating them. - Use something like
libsystemdto send journal datagrams to/run/systemd/journal/socket. - Just print stuff to
stdoutorstderr. If Systemd has connected them up to the journal then each line will become a log record.
The last option is often the most popular because it's the easiest,
but the major downside is that you can't specify any custom fields.
You only have MESSAGE and the ones that Journald adds itself.
Except... you can precede lines with a special prefix to specify
the severity of the message.
This will be stripped off and turned into the PRIORITY.
| Prefix | PRIORITY |
|---|---|
<7> |
Debug |
<6> |
Informational |
<5> |
Notice |
<4> |
Warning |
<3> |
Error |
<2> |
Critical |
<1> |
Alert |
<0> |
Emergency |
These prefices are inspired by Syslog, although it only encodes priority levels and does not include facility data.
The purpose of this library is to automatically add these prefices to every line of output.
The Roadmap
In many respects this project is now complete. Going forwards the things I want to achieve are:
- Maintain compatibility with new versions of Python as they get released. Normally an annual thing.
- Support automatic enabling or disabling of the prefix based on whether
the
JOURNAL_STREAMenvironment variable is present (supplied by Systemd) or absent (when the user is running things from a terminal). The complication of this is that the user would need to explicitly enable the prefix any time they were piping intosystemd-cat.
Typechecking with Mypy et al
If you are checking the type annotations of your application you may
get an error about priorityprefix being skipped because of
missing stubs and markers.
This can be suppressed in early versions of Mypy with a special comment:
import priorityprefix # type: ignore
Some type annotations have been be added to this library.
From Mypy version 1.14 onwards you can use --follow-untyped-imports
or follow_untyped_imports = True to have them checked.
Unfortunately tools like Mypy adhere strictly to PEP 561 which requires the module to be fully refactored into a package before it will be recognised. Until a single-file module marker is available this library has no way to communicate to the tooling that type information is available.
Licence
This software library is released under the LGPL v3.0. It may be used by and distributed with both GPL and non-GPL applications.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file priorityprefix-1.4.0.tar.gz.
File metadata
- Download URL: priorityprefix-1.4.0.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
357d609521b13010955555c37f22618ca3c6c7f6fb389562d19a36007324267d
|
|
| MD5 |
3e8f3a8dd90354710852366a18a9b251
|
|
| BLAKE2b-256 |
674af59fcdd4c8af919b92a93c8f716396c755bdef7cef375f46bc8fe9456d9f
|
File details
Details for the file priorityprefix-1.4.0-py3-none-any.whl.
File metadata
- Download URL: priorityprefix-1.4.0-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af727f4a20a5f675a94e59c0eb7f0b45ebc82f00a29522978f2b3555b2e14810
|
|
| MD5 |
90cdc379f8c6c31955798526fc118c8a
|
|
| BLAKE2b-256 |
a5081905afbe69901a96894ad1c933fc0d1767e0a466ac6b0ea63a6b19447c69
|