Installing Node Exporter from Prometheus binary releases

From wikieduonline
Revision as of 09:47, 14 July 2020 by Welcome (talk | contribs) (Created page with "To expand Prometheus beyond metrics about itself only, we'll install an additional exporter called '''Node Exporter'''. Node Exporter provides detailed information about the s...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

To expand Prometheus beyond metrics about itself only, we'll install an additional exporter called Node Exporter. Node Exporter provides detailed information about the system, including CPU, disk, and memory usage.

  • Download the current stable version of Node Exporter into your home directory.
cd ~
curl -LO https://github.com/prometheus/node_exporter/releases/download/v0.15.1/node_exporter-0.15.1.linux-amd64.tar.gz
  • Use the sha256sum command to generate a checksum of the downloaded file:
    sha256sum node_exporter-0.15.1.linux-amd64.tar.gz
  • Unpack the downloaded archive:
    tar xvf node_exporter-0.15.1.linux-amd64.tar.gz
  • This will create a directory called node_exporter-0.15.1.linux-amd64 containing a binary file named node_exporter, a license, and a notice.
  • Copy the binary to the /usr/local/bin directory and set the user and group ownership to the node_exporter user that you created in Step 1 and remove the leftover files from your home directory as they are no longer needed.
sudo cp node_exporter-0.15.1.linux-amd64/node_exporter /usr/local/bin
sudo chown node_exporter:node_exporter /usr/local/bin/node_exporter
rm -rf node_exporter-0.15.1.linux-amd64.tar.gz node_exporter-0.15.1.linux-amd64

Now that you've installed Node Exporter, let's test it out by running it before creating a service file for it so that it starts on boot.


See also

Advertising: