Changes for page Configuring a VPS machine from scratch
Last modified by Alexandru Pentilescu on 2024/07/22 21:37
From version 9.1
edited by Alexandru Pentilescu
on 2024/07/02 20:24
on 2024/07/02 20:24
Change comment:
There is no comment for this version
To version 10.1
edited by Alexandru Pentilescu
on 2024/07/22 21:05
on 2024/07/22 21:05
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -149,4 +149,21 @@ 149 149 {{/code}} 150 150 151 151 Honestly, the "ipv6" line is unnecessary for our purposes, but I'm adding it anyway. After this file is added, after reboot, postfix will be able to bind itself to nonlocal addresses successfully. 152 + 153 += Installing Grafana and all the other necessary components = 154 +System monitoring is genuinely important. As such, having some pretty graphs to look at that monitor various stats of the server can be quite useful. 155 +To this end, we will set up Grafana as our graphs dashboard where we will visualize all of the relevant metrics of the system, as well as Prometheus as the data aggregator and Node Exporter, as the data collector. 156 + 157 +Let's get started! 158 + 159 +== Installing node exporter == 160 +Use wget or any other utility to grab the latest version of node exporter. 161 + 162 +{{code language="bash"}} 163 +wget https://github.com/prometheus/node_exporter/releases/download/v0.15.2/node_exporter-0.15.2.linux-amd64.tar.gz 164 +{{/code}} 165 + 152 152 ))) 167 + 168 + 169 +