⌚ SystemD Manager, watchdog, notifier and service
🌌 Bugs are evident™ - MATRIX️
🚧 This project is under active development!
📢 We welcome your feedback and contributions.
v22.13.1
Stay informed about the status of your SystemD services with this notification tool. Designed for flexibility, this tool sends notifications (e.g., via email) when specific service states are detected, making it easier to manage and maintain clean and efficient SystemD configurations.
Receive email notifications when a SystemD service enters a failed state. By enabling boot-time monitoring, the tool can report all failed or “not found” services on startup, allowing you to clean up or remove them from your SystemD configuration effortlessly.
Additionally, you can expand its functionality to track other service states such as running, stopped, or even monitor all SystemD changes. The tool leverages LoadState
and other properties to trigger actions, enabling notifications or integrations with platforms like Twitter, Facebook, or custom alert systems.
This notifier was initially developed to monitor and alert for failed services on my server via email. However, it is designed for easy customization:
With its DBus-based architecture and async/await wrappers, evolving and adapting the tool is straightforward.
This is a lightweight yet robust solution for Linux/Unix/BSD environments (tested on Debian Testing and Ubuntu). Key features include:
This tool is perfect for maintaining server reliability and cleanliness, with the potential to replace traditional watchdogs entirely.
Contributions are welcome! Fork the repository, add features, or improve functionality as needed.
#you probably might need a c++11 if it is old,
#for additional requirements check out .travis.yml
sudo apt-get install libdbus-1-dev libglib2.0-dev
Please do not use yarn
, because it asks for sudo
and prompt (unless you are root
).
npm install p3x-systemd-manager --save
#!/usr/bin/env node
const systemd = require('p3x-systemd-manager');
const settings = systemd.lib.getSettings();
if (settings === false) {
return;
}
systemd.boot(settings);
systemd.notifier(settings);
This notifies changes in the SystemD via e-mail. Right now it polls, so that it gets all changes. It task about 30-50
milliseconds per run on my 3.3 GHz Pentium 2 cores, not too much. All automatic, requires email and a few tweaks as you
want.
const Watchdog = require('p3x-systemd-manager').watchdog;
const settings = require('./settings.json');
const watchdog = Watchdog(settings);
watchdog.run();
Feb 22 11:41:31 server systemd[1]: Started p3x-watchdog.
Feb 22 11:41:32 server watchdog[2196]: started
Feb 22 11:41:32 server watchdog[2196]: watchdog type(s): service
Feb 22 11:41:32 server watchdog[2196]: ping: 2 hours
Feb 22 11:41:32 server watchdog[2196]: interval: 10 seconds
Feb 22 11:41:32 server watchdog[2196]: command: systemctl --plain --no-pager --no-legend --type=service
Feb 22 11:41:32 server watchdog[2196]: ping - 51 items - every 2 hours
Feb 22 11:41:32 server watchdog[2196]: Mail is working.
git clone https://github.com/patrikx3/systemd-manager.git
cd systemd-manager
sudo apt-get install libdbus-1-dev libglib2.0-dev
npm install
./notifier settings.json
#it is used to be a watchdog, polling
./watchdog settings.json
Checkout artifacts/setttings.json
filter.type
: Array, can be empty, actual man systemctl
type. Service is the safest. Not always working when
you fine tune, some are weird.
nodemailer.config
: Exact nodemailer config, any of that.
interval, ping
: Uses npm milliseconds
framework for turn into actual milliseconds from a string. This is
for Watchdog
, not needed anymore.
sudo
: for the watchdog either you need to use root, or via sudo (true|false
). For SystemD needs root, but
you can use another user, and it will use sudo then when polling.
For SystemD DBus notifier you need to use root anyway. I think it cannot do anything else so it’s safe to take over the
system, also it’s internal, no web interface for now.
{
{
"debug": false,
"filter": {
"type": [
"service"
],
"exclude": [
"fwupd-refresh",
"sysstat-collect",
"systemd-tmpfiles-clean",
"ua-timer",
"phpsessionclean",
"display-manager",
"motd-news",
"sysstat-summary",
"logrotate",
"dpkg-db-backup",
"mdcheck_continue",
"mdmonitor-oneshot",
"apt-daily",
"man-db",
"packagekit",
"certbot",
"user-runtime-dir",
"user",
"update-notifier-download"
],
"include": [],
"trigger": {
"SubState": [
"dead",
"failed"
]
}
},
"boot": {
"enabled": true,
"trigger": {
"SubState": [
"dead",
"failed"
]
}
},
"moment": "LLL",
"prefix": "P3X-SYSTEMD-NOTIFIER",
"dbus": {
"address": "unix:path=/run/dbus/system_bus_socket",
"display": ":0"
},
"interval": "watchdog only",
"interval": "10 seconds",
"ping": "watchdog only",
"ping": "2 hours",
"sudo": "watchdog only",
"sudo": false,
"email": {
"to": "system@localhost",
"from": "system@localhost"
},
"nodemailer": {
"singleton": true,
"config": {
"host": "mail.localhost",
"port": 465,
"secure": true,
"auth": {
"user": "system@localhost",
"pass": "unknown"
}
}
},
"ignoreErrors": [
"The maximum number of pending replies per connection has been reached",
"No introspectable"
]
}
There are 2 errors that I could not catch or why it happens, so I created a hack:
const settings = {
"ignoreErrors": [
"The maximum number of pending replies per connection has been reached",
"No introspectable"
]
}
process.on("unhandledRejection", function (err) {
if (err && err.message && settings.ignoreErrors.includes(err.message)) {
console.warn('ignoring error', err)
} else {
// user your own logic
console.error(err)
process.exit(-1)
}
});
The two error messages:
"The maximum number of pending replies per connection has been reached"
"No introspectable"
If you want to quickly and affordably develop your next digital project, visit corifeus.eu for expert solutions tailored to your needs.
Discover the powerful and free online networking tool at network.corifeus.com.
🆓 Free
Designed for professionals and enthusiasts, this tool provides essential features for network analysis, troubleshooting, and management.
Additionally, it offers tools for:
All these features are completely free to use.
If you appreciate our work, consider ⭐ starring this repository or 💰 making a donation to support server maintenance and ongoing development. Your support means the world to us—thank you!
All my domains, including patrikx3.com, corifeus.eu, and corifeus.com, are developed in my spare time. While you may encounter minor errors, the sites are generally stable and fully functional.
Version Structure: We follow a Major.Minor.Patch versioning scheme:
🚨 Important Changes: Any breaking changes are prominently noted in the readme to keep you informed.
P3X-SYSTEMD-MANAGER Build v2025.4.123