diff --git a/docs/guides/node-exporter.md b/docs/guides/node-exporter.md index 9f6319fe..7eded30c 100644 --- a/docs/guides/node-exporter.md +++ b/docs/guides/node-exporter.md @@ -17,11 +17,20 @@ The Prometheus Node Exporter is a single static binary that you can install [via ```bash # NOTE: Replace the URL with one from the above mentioned "downloads" page. -# Download the appropriate bundle for your operating system and hardware architecture. -# , , and are placeholders (e.g., linux-amd64, darwin-arm64, etc.). -wget https://github.com/prometheus/node_exporter/releases/download/v/node_exporter-.-.tar.gz -tar xvfz node_exporter-.-.tar.gz -cd node_exporter-.- +# Node Exporter is available for multiple OS targets and architectures. +# Downloads are available at: +# https://github.com/prometheus/node_exporter/releases/download/v/node_exporter-.-.tar.gz +# +# , , and are placeholders: +# - : Release version (e.g., 1.10.2) +# - : Operating system (e.g., linux, darwin, freebsd) +# - : Architecture (e.g., amd64, arm64, 386) +# +# For this example, we will use Node Exporter version 1.10.2 for a Linux system with amd64 architecture. + +wget https://github.com/prometheus/node_exporter/releases/download/v1.10.2/node_exporter-1.10.2.linux-amd64.tar.gz +tar xvfz node_exporter-1.10.2.linux-amd64.tar.gz +cd node_exporter-1.10.2.linux-amd64 ./node_exporter ```