Skip to main content

Send your systemctl stats and and events to mqtt and discovery them in home assistant.

Project description

systemctl2mqtt - Deliver systemctl status information over MQTT

Mypy Ruff Markdownlint Publish

This program uses journalctl and systemctl to watch for changes in your services, and top for metrics about those services, and delivers current status to MQTT. It will also publish Home Assistant MQTT Discovery messages so that (binary) sensors automatically show up in Home Assistant.

The focus lies on long-running services with continuous uptime, instead of single or one-shot services, as the stats being reported as well as the child PIDs being refreshed every stats_record_seconds. For services with a lifespan comparable to this interval, the reported stats will not be accurate. Further, as the library uses top and matches the services with their respective PIDs, including child PIDs from subprocesses, it is also not suited for monitoring services which spawn regularly new threads.

This is part of a family of similar tools:

Installation and Deployment

It is available as python package on pypi/systemctl2mqtt.

Pypi package

PyPI version

pip install systemctl2mqtt
systemctl2mqtt --name MySystemName --events -vvvvv

Usage

from systemctl2mqtt import systemctl2Mqtt, DEFAULT_CONFIG

cfg = Systemctl2MqttConfig({ 
  **DEFAULT_CONFIG,
  "host": "mosquitto",
  "enable_events": True
})

try:
  systemctl2mqtt = Systemctl2Mqtt(cfg)
  systemctl2mqtt.loop_busy()

except Exception as ex:
  # Do something

Default Configuration

You can use environment variables to control the behavior.

Config Default Description
log_level INFO Set to DEBUG,INFO,WARN,ERROR,CRITICAL to enable different levels of verbosity.
systemctl2mqtt_hostname systemctl2mqtt Hostname The hostname of your host, if you want to overwrite it.
homeassistant_prefix homeassistant The prefix for Home Assistant discovery. Must be the same as discovery_prefix in your Home Assistant configuration.
homeassistant_single_device false Group all entities by a single device in Home Assistant instead of one device per entity.
mqtt_client_id mqtt2discord The client id to send to the MQTT broker.
mqtt_host localhost The MQTT broker to connect to.
mqtt_port 1883 The port on the broker to connect to.
mqtt_user The user to send to the MQTT broker. Leave unset to disable authentication.
mqtt_password The password to send to the MQTT broker. Leave unset to disable authentication.
mqtt_timeout 30 The timeout for the MQTT connection.
mqtt_topic_prefix systemctl The MQTT topic prefix. With the default data will be published to systemctl/<hostname>.
mqtt_qos 1 The MQTT QOS level
service_whitelist Define a whitelist for services to consider, if empty, everything is monitored. The entries are either match as literal strings or as regex.
service_blacklist Define a blacklist for services to consider, takes priority over whitelist. The entries are either match as literal strings or as regex.
destroyed_service_ttl 86400 How long, in seconds, before destroyed services are removed from Home Assistant. Services won't be removed if the service is restarted before the TTL expires.
stats_record_seconds 30 The number of seconds to record state and make an average
enable_events 0 1 Or 0 for processing events
enable_stats 0 1 Or 0 for processing statistics

Consuming The Data

Data is published to the topic systemctl/<hostname>/events using JSON serialization. It will arrive whenever a change happens and its type can be inspected in type_definitions.py or the documentation.

Data is also published to the topic systemctl/<hostname>/stats using JSON serialization. It will arrive every STATS_RECORD_SECONDS seconds or so can be inspected in type_definitions.py or the documentation.

Home Assistant

Once systemctl2mqtt is collecting data and publishing it to MQTT, it's rather trivial to use the data in Home Assistant.

A few assumptions:

  • Home Assistant is already configured to use a MQTT broker. Setting up MQTT and HA is beyond the scope of this documentation. However, there are a lot of great tutorials on YouTube. An external broker (or as add-on) like Mosquitto will need to be installed and the HA MQTT integration configured.
  • The HA MQTT integration is configured to use homeassistant as the MQTT autodiscovery prefix. This is the default for the integration and also the default for systemctl2mqtt. If you have changed this from the default, use the --prefix parameter to specify the correct one.
  • You're not using TLS to connect to the MQTT broker. Currently systemctl2mqtt only works with unencrypted connections. Username / password authentication can be specified with the --username and --password parameters, but TLS encryption is not yet supported.

After you start the service (binary) sensors should show up in Home Assistant immediately. Look for sensors that start with (binary_)sensor.systemctl. Metadata about the container will be available as attributes for events, which you can then expose using template sensors if you wish.

Screenshot of Home Assistant sensor showing status and attributes.

Documentation

Using mkdocs, the documentation and reference is generated and available on github pages.

Dev

Setup the dev environment using VSCode, it is highly recommended.

python -m venv .venv
source .venv/bin/activate
pip install -r requirements_dev.txt

Install pre-commit

pre-commit install

# Run the commit hooks manually
pre-commit run --all-files

Following VSCode integrations may be helpful:

Releasing

A final version can only be released from the master branch. To pass the gates of the publish workflow, the version must match in both the tag and systemctl2mqtt/__init__.py.

To release a prerelease version, it must be done from a feature branch (not master). Prerelease versions are explicitly marked as such on the GitHub release page.

Credits

This is inspired from my other repo docker2mqtt.

CHANGELOG

DEPRECATED

This changelog is no longer maintained and will not be updated in future releases. Please refer to the release notes on GitHub for the latest changes.

1.3.1

  • Fix parsing of memory values with suffixes from top

1.3.0

  • Add option to group all entities into a single device in home assistant

1.2.0

  • Update version package identifier and bump setuptools
  • Fix mypy setup

1.1.2

  • Update the discovery jsons for home assistant

1.1.1

  • Refresh child PIDs every interval data is reported (see README.md for limitations of this behaviour)

1.1.0

  • Add child pids to metrics

1.0.0

  • Initial version.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

systemctl2mqtt-1.4.0.tar.gz (23.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

systemctl2mqtt-1.4.0-py3-none-any.whl (20.5 kB view details)

Uploaded Python 3

File details

Details for the file systemctl2mqtt-1.4.0.tar.gz.

File metadata

  • Download URL: systemctl2mqtt-1.4.0.tar.gz
  • Upload date:
  • Size: 23.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for systemctl2mqtt-1.4.0.tar.gz
Algorithm Hash digest
SHA256 520ee0ec459ac57fb145c36f7027bddb27825fdd343d320abb8cf42bbce58967
MD5 7f078260b60c80dade17acf9864d8689
BLAKE2b-256 80ec240887f65e02728645fbede11ff392d1023832f1341cb8d373d978eac631

See more details on using hashes here.

Provenance

The following attestation bundles were made for systemctl2mqtt-1.4.0.tar.gz:

Publisher: publish.yml on miaucl/systemctl2mqtt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file systemctl2mqtt-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: systemctl2mqtt-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 20.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for systemctl2mqtt-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7a8790a81ea61b129e2ea34f36b394c5ee3802b4b9f03bec39fae8f1cdbbe7eb
MD5 5f38eb1824c555d832e4272044ac895c
BLAKE2b-256 921af81c6cc3080b163299cc6d1a88e198a2596f3077fc948bc1eae488f34afd

See more details on using hashes here.

Provenance

The following attestation bundles were made for systemctl2mqtt-1.4.0-py3-none-any.whl:

Publisher: publish.yml on miaucl/systemctl2mqtt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page