Post-Install: Monitoring
Monitoring options inside the Customizable post-install script. This category is small and provider-specific — it installs the OVH Real-Time Monitoring agent on dedicated OVH servers and does nothing anywhere else.
Narrow scope on purpose
Install OVH Real-Time Monitoring (RTM)
If your Proxmox host is a dedicated server rented from OVHcloud, you can enable RTM to expose hardware telemetry (CPU temperature, PSU status, disk SMART, RAID controller state, etc.) to the OVH control panel. This is the same agent OVH uses for their own "Server Monitoring" feature.
How ProxMenux decides
- Gets the host's public IP via
curl ipinfo.io/ip. - Looks up the owning ISP with a
whoisquery tov4.whois.cymru.com. - If the result mentions OVH, fetches
last-public-ovh-infra-yak.snap.mirrors.ovh.net/yak/archives/apply.shand pipes it tobashwith the RTM v2 puppet manifest. - If the result does not mention OVH, nothing is installed. The option is a no-op.
Remote script piped to bash
wget -qO - https://…apply.sh | bash. If the OVH mirror is ever compromised, the script executes as root on your host. Before enabling this option, decide whether you trust OVH's mirror chain more than the monitoring you gain. For most home-lab or non-OVH users this option should simply stay off.Only enable if the host is actually at OVH
What ProxMenux runs
# Detect + conditionally install
public_ip=$(curl -s ipinfo.io/ip)
is_ovh=$(whois -h v4.whois.cymru.com " -t $public_ip" | tail -n 1 | cut -d'|' -f3 | grep -i "ovh")
if [ -n "$is_ovh" ]; then
wget -qO - https://last-public-ovh-infra-yak.snap.mirrors.ovh.net/yak/archives/apply.sh \
| OVH_PUPPET_MANIFEST=distribyak/catalog/master/puppet/manifests/common/rtmv2.pp bash
fiVerification
On a real OVH host, after a reboot you should see the RTM dashboard in your OVH Manager populated with live data for the host. On the Proxmox side, the RTM collector is a systemd service — check it directly:
systemctl status ovh-rtm # or grep the unit name from your install log
journalctl -u ovh-rtm --since "10 min ago"Troubleshooting
"Server belongs to OVH" but I'm not on OVH
systemctl status ovh-rtm — it will not exist), the message is spurious and can be ignored. Nothing was installed on your host.Not reversible from the Uninstall menu
apt purge ovh-* and delete any puppet manifests under /etc/puppet/ that RTM installed. On a non-OVH host, nothing was ever installed, so there's nothing to revert.Related
- ProxMenux Monitor — local web dashboard for the host (works on any provider, not just OVH).
- Useful System Commands — local-host monitoring reference.
- Customizable Post-Install — back to the parent menu.