1
0
mirror of https://github.com/prometheus/docs.git synced 2026-02-05 06:45:01 +01:00

docs: improve node exporter download instructions

Fixes #1896

Clarified download instructions for Node Exporter to help users:
- Select the appropriate bundle for their OS and architecture
- Added note about platform-specific downloads (linux-amd64, darwin-arm64, etc.)
- Made tar command more specific to match downloaded file pattern
- Improved clarity for new users

Signed-off-by: Sibasis Padhi <sibasis.padhi@gmail.com>
This commit is contained in:
Sibasis Padhi
2026-01-09 00:19:45 -06:00
parent cbea98f4e9
commit b0175ec5c7

View File

@@ -17,10 +17,11 @@ 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.
# <VERSION>, <OS>, and <ARCH> are placeholders.
# Download the appropriate bundle for your operating system and hardware architecture.
# <VERSION>, <OS>, and <ARCH> are placeholders (e.g., linux-amd64, darwin-arm64, etc.).
wget https://github.com/prometheus/node_exporter/releases/download/v<VERSION>/node_exporter-<VERSION>.<OS>-<ARCH>.tar.gz
tar xvfz node_exporter-*.*-amd64.tar.gz
cd node_exporter-*.*-amd64
tar xvfz node_exporter-<VERSION>.<OS>-<ARCH>.tar.gz
cd node_exporter-<VERSION>.<OS>-<ARCH>
./node_exporter
```