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

Merge pull request #2810 from sibasispadhi/improve-node-exporter-download-instructions

docs: improve node exporter download instructions
This commit is contained in:
Jan Fajerski
2026-01-13 15:35:56 +01:00
committed by GitHub

View File

@@ -17,10 +17,20 @@ The Prometheus Node Exporter is a single static binary that you can install [via
```bash ```bash
# NOTE: Replace the URL with one from the above mentioned "downloads" page. # NOTE: Replace the URL with one from the above mentioned "downloads" page.
# <VERSION>, <OS>, and <ARCH> are placeholders. # Node Exporter is available for multiple OS targets and architectures.
wget https://github.com/prometheus/node_exporter/releases/download/v<VERSION>/node_exporter-<VERSION>.<OS>-<ARCH>.tar.gz # Downloads are available at:
tar xvfz node_exporter-*.*-amd64.tar.gz # https://github.com/prometheus/node_exporter/releases/download/v<VERSION>/node_exporter-<VERSION>.<OS>-<ARCH>.tar.gz
cd node_exporter-*.*-amd64 #
# <VERSION>, <OS>, and <ARCH> are placeholders:
# - <VERSION>: Release version (e.g., 1.10.2)
# - <OS>: Operating system (e.g., linux, darwin, freebsd)
# - <ARCH>: 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 ./node_exporter
``` ```