File tree Expand file tree Collapse file tree 1 file changed +1
-38
lines changed
Expand file tree Collapse file tree 1 file changed +1
-38
lines changed Original file line number Diff line number Diff line change @@ -189,43 +189,6 @@ docker logs -f traefik | grep certificate
189189
190190```
191191
192- ### 🔧 Node exporter
193-
194- ** Install and configure Prometheus Node Exporter to monitor system metrics (CPU, memory, disk, etc).**
195-
196- 📥 ** 1. Download Node Exporter**
197- ``` bash
198- cd /opt
199- curl -LO https://github.com/prometheus/node_exporter/releases/download/v1.9.0/node_exporter-1.9.0.linux-amd64.tar.gz
200-
201- ```
202-
203- 📦 ** 2. Extract and move binary**
204- ``` bash
205- tar xvf node_exporter-1.9.0.linux-amd64.tar.gz
206- mv node_exporter-1.9.0.linux-amd64/node_exporter /usr/local/bin/
207- rm -rf node_exporter-1.9.0.linux-amd64*
208- ```
209-
210- 👤 ** 3. Create a system user**
211-
212- ``` bash
213- sudo useradd --no-create-home --shell /usr/sbin/nologin node_exporter
214- ```
215-
216- 🔥 ** 4. Open port 9100**
217- ``` bash
218- ufw allow 9100/tcp
219- ```
220-
221- 🚀 ** 5. Start and enable the service**
222-
223- ``` bash
224- systemctl daemon-reload
225- systemctl start node_exporter
226- systemctl enable node_exporter
227- ```
228-
229192---
230193
231194### 📊 1. Importing Dashboards in Grafana
@@ -415,4 +378,4 @@ docker image prune
415378
416379docker volume prune
417380
418- ```
381+ ```
You can’t perform that action at this time.
0 commit comments