Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/node-exporter.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description: The Node Exporter is a project that is maintained through the Prome
Begin by downloading Node Exporter using the wget command:

```bash
wget https://github.com/prometheus/node_exporter/releases/download/v1.7.0/node_exporter-1.7.0.linux-amd64.tar.gz
wget https://github.com/prometheus/node_exporter/releases/download/v1.9.1/node_exporter-1.9.1.linux-amd64.tar.gz
```

Note: Ensure you are using the latest version of Node Exporter and the correct architecture build for your server. The provided link is for amd64. For the latest releases, check here - [Prometheus Node Exporter Releases](https://github.com/prometheus/node_exporter/releases)
Expand All @@ -24,15 +24,15 @@ Note: Ensure you are using the latest version of Node Exporter and the correct a
After downloading, extract the contents with the following command:

```bash
tar xvf node_exporter-1.7.0.linux-amd64.tar.gz
tar xvf node_exporter-1.9.1.linux-amd64.tar.gz
```

## Move the Node Exporter Binary

Change to the directory and move the node_exporter binary to /usr/local/bin:

```bash
cd node_exporter-1.7.0.linux-amd64
cd node_exporter-1.9.1.linux-amd64
```

```bash
Expand All @@ -42,7 +42,7 @@ sudo cp node_exporter /usr/local/bin
Then, clean up by removing the downloaded tar file and its directory:

```bash
rm -rf ./node_exporter-1.7.0.linux-amd64
rm -rf ./node_exporter-1.9.1.linux-amd64
```

## Create a Node Exporter User
Expand Down
2 changes: 1 addition & 1 deletion docs/prometheus.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ alerting:
- targets: []
scheme: http
timeout: 10s
api_version: v1
api_version: v2
scrape_configs:
- job_name: prometheus
honor_timestamps: true
Expand Down