-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Note on docker app script #394
Comments
This is already covered under |
It's very likely I'm being dense, but in the following directions https://docs.librenms.org/Extensions/Applications/#docker-stats
Debian-snmp now has all the privialleges of the extend docker /usr/bin/sudo /etc/snmp/docker-stats.sh coupled with
Would execute /usr/bin/docker stats as if it was root. Wouldn't that preclude the need for Sorry if I'm slow, as that's likely what's going on, and thanks for your work on one of my favorite pieces of software :) |
Yeah. No need to add the snmpd user to that group if running the script via sudo. Similarly there also running it via cron and then just catting the file the output is dumped to from snmpd, which works great for extends that will not finish in a timely fashion. |
Please note that giving access to the docker daemon to the snmp agent effectively gives it root access to the system.
A better solution would be a systemd timer and unit that write that information periodically to a file in /tmp that is chown'd to match the access rights of the agent (if you seperate /tmp per systemd unit and that affects snmpd, you need to decide on a different dir and use that. Maybe a general dir in /var/run would be a good general solution for data sharing between snmpd and any scripts so snmpd doesn't need root access to gather the information.
Just a general note, maybe inspiration for a PR that rewrites all the integrations with these apps so they don't need root access anymore.
The text was updated successfully, but these errors were encountered: