lotus/metrics
Fridrik Asmundsson 26e9703548 Add instructions for setting up Grafana+Prometheus
This PR also includes location where to put our grafana dashboards
which we should maintain in repo.
2023-09-19 17:24:02 +00:00
..
grafana Add instructions for setting up Grafana+Prometheus 2023-09-19 17:24:02 +00:00
proxy Expose storage states on the metrics endpoint 2021-10-01 14:45:01 +02:00
exporter.go Collect worker task metrics 2021-03-05 12:48:17 +01:00
metrics.go fix 2023-07-07 14:17:21 -04:00
prometheus.yml Add instructions for setting up Grafana+Prometheus 2023-09-19 17:24:02 +00:00
README.md Add instructions for setting up Grafana+Prometheus 2023-09-19 17:24:02 +00:00

Setting Up Prometheus and Grafana

Lotus supports exporting a wide range of metrics, enabling users to gain insights into its behavior and effectively analyze performance issues. These metrics can be conveniently utilized with aggregation and visualization tools for in-depth analysis. In this document, we show how you can set up Prometheus and Grafana for monitoring and visualizing these metrics:

  • Prometheus: Prometheus is an open-source monitoring and alerting toolkit designed for collecting and storing time-series data from various systems and applications. It provides a robust querying language (PromQL) and a web-based interface for analyzing and visualizing metrics.

  • Grafana: Grafana is an open-source platform for creating, sharing, and visualizing interactive dashboards and graphs. It integrates with various data sources, including Prometheus, to help users create meaningful visual representations of their data and set up alerting based on specific conditions.

Prerequisites

  • You have a Linux or Mac based system.
  • You have root access to install software
  • You have lotus node already running

Install and start Prometheus

On Ubuntu:

# install prometheus
sudo apt-get install prometheus

# copy the prometheus.yml config to the correct directory
cp lotus/metrics/prometheus.yml /etc/prometheus/prometheus.yml

# start prometheus
sudo systemctl start prometheus

# enable prometheus on boot (optional)
sudo systemctl enable prometheus

On Mac:

# install prometheus
brew install prometheus

# start prometheus
prometheus --config.file=lotus/metrics/prometheus.yml

Install and start Grafana

On Ubuntu:

# install grafana
sudo apt-get install grafana

# start grafana
sudo systemctl start grafana-server

# start grafana on boot (optional)
sudo systemctl enable grafana-server

On Mac:

brew install grafana
brew services start grafana

You should now have Prometheus and Grafana running on your machine where Promotheus is already collecting metrics from your running Lotus node and saving it to a database.

You can confirm everything is setup correctly by visiting:

  • Prometheus (http://localhost:9090): You can open the metric explorer and view any of the aggregated metrics scraped from Lotus
  • Grafana (http://localhost:3000): Default username/password is admin/admin, remember to change it after login.

Add Prometheus as datasource in Grafana

  1. Log in to Grafana using the web interface.
  2. Navigate to "Home" > "Connections" > "Data Sources."
  3. Click "Add data source."
  4. Choose "Prometheus."
  5. In the "HTTP" section, set the URL to http://localhost:9090.
  6. Click "Save & Test" to verify the connection.

Import one of the existing dashboards in lotus/metrics/grafana

  1. Log in to Grafana using the web interface.
  2. Navigate to "Home" > "Dashboards" > Click the drop down menu in the "New" button and select "Import"
  3. Paste any of the existing dashboards in lotus/metrics/grafana into the "Import via panel json" panel.
  4. Click "Load"

Collect system metrics using node_exporter

Although Lotus includes many useful metrics it does not include system metrics such as information about cpu, memory, disk, network, etc. If you are investigating an issue and have Lotus metrics available, its often very useful to correlate certain events or behaviour with general system metrics.

Install node_exporter

If you have followed this guide so far and have Prometheus and Grafana already running, you can run the following commands to also aggregate the system metrics:

Ubuntu:

Mac:

# install node_exporter
brew install node_exporter

# run node_exporter
node_exporter

Update prometheus config to include node_exporter

Add the following to the prometheus config and then restart prometheus:

- job_name: node_exporter
  static_configs:
  - targets: ['localhost:9100']

Import system dashboard

  1. Download the most recent dashboard from https://grafana.com/grafana/dashboards/1860-node-exporter-full/
  2. Log in to Grafana (http://localhost:3000) using the web interface.
  3. Navigate to "Home" > "Dashboards" > Click the drop down menu in the "New" button and select "Import"
  4. Paste any of the existing dashboards in lotus/metrics/grafana into the "Import via panel json" panel.
  5. Click "Load"
  6. Select the Prometheus datasource you created earlier
  7. Click "Import"