Monitoring Settings
The Monitoring Settings category focuses on enhancing the monitoring capabilities of your Proxmox VE installation. These settings are designed to provide better insights into your system's performance and health.
Available Optimizations
1Install OVH Real Time Monitoring (RTM)
This optimization detects if the server is hosted by OVH and installs the OVH Real Time Monitoring (RTM) tool if applicable.
The following steps are performed:
- Detects the server's public IP address
- Checks if the IP belongs to OVH using WHOIS information
- If it's an OVH server, installs the OVH RTM tool
Note: This optimization is only applicable to servers hosted by OVH. If your server is not hosted by OVH, this step will be skipped.
This adjustment automates the following commands:
# Get the public IP and check if it belongs to OVH
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
# Install OVH RTM
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
fi
Automatic Application
This monitoring optimization is automatically applied when selected in the Monitoring section. The automation ensures that the OVH RTM tool is installed correctly if your server is hosted by OVH, enhancing your server's monitoring capabilities without manual intervention.