These steps configure a host to consume the Prometheus RPM repository published at https://rpms.thesystem.dev/.
Import the GPG public key to verify package signatures and ensure packages haven't been tampered with:
sudo rpm --import https://rpms.thesystem.dev/RPM-GPG-KEY-thesystem-devsudo tee /etc/yum.repos.d/prometheus-rpm.repo > /dev/null <<'EOF'
[prometheus-rpm]
name=Prometheus RPM Repository
baseurl=https://rpms.thesystem.dev/prometheus-rpm/el$releasever/$basearch/
enabled=1
gpgcheck=1
gpgkey=https://rpms.thesystem.dev/RPM-GPG-KEY-thesystem-dev
EOFsudo dnf clean all
sudo dnf makecache --repo prometheus-rpm
sudo dnf install prometheusReplace prometheus with any package listed in docs/exporters.md.
All services ship with systemd units. Customise flags or environment variables using drop-in overrides under /etc/systemd/system/<service>.d/*.conf. See docs/service-overrides.md for examples.