📖
Stake Local Dashboard
  • Stake Local Dashboard
    • Library Sections
  • Dashboard Installation
    • Installation Overview
    • Install Supporting Software
      • Install Prerequisites
      • Install Prometheus
      • Install Grafana
      • Install node_exporter
      • Install json_exporter
      • Install Ethereum Metrics Exporter
    • Configure Ethereum Clients
    • Configure Supporting Software
      • Configure json_exporter
      • Configure Prometheus Rules
      • Configure Ethereum Metrics Exporter
    • Prometheus Jobs & Targets
      • Prometheus Jobs
      • About Stake Local Labels
      • Base Targets Installation
      • Consensus Client Targets
      • Execution Client Targets
      • Validator Client Targets
      • node_exporter Target
      • json_exporter Target
      • Ethereum Metrics Exporter Targets
      • Third-Party Targets
      • Ethereum Address Targets
      • Validator Public Key Targets
      • Optional: Grafana Target
      • Optional: Prometheus Target
      • Clean Up Unused Targets
    • Optional: Alternative Dashboard Compatibility
      • Besu Dashboard Compatibility
      • Erigon Dashboard Compatibility
      • Geth Dashboard Compatibility
      • Lighthouse Dashboard Compatibility
      • Lodestar Dashboard Compatibility
      • Nethermind Dashboard Compatibility
      • Nimbus Dashboard Compatibility
      • Prysm Dashboard Compatibility
      • Teku Compatibility
    • Enable & Start/Restart Services
      • Checking Software Status
    • Install Dashboard
  • Additional Modifications
    • Additional Staking Groups
    • Change or Add Currency
Powered by GitBook
On this page
  • Grafana
  • Install Supporting Software
  • Install Grafana
  • Notes
  1. Dashboard Installation
  2. Install Supporting Software

Install Grafana

Install Grafana to serve dashboards

PreviousInstall PrometheusNextInstall node_exporter

Last updated 2 years ago

Grafana

Grafana provides all dashboard functionality. Dashboards are displayed using Grafana's user interface, and query for data from Prometheus.

Install Supporting Software

Install the supporting software we may need.

sudo apt-get update
sudo apt-get install apt-transport-https
sudo apt-get install software-properties-common wget

Install Grafana

Install the key for authenticating Grafana packages.

wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add -

This command may generate a warning about apt-key being deprecated. That is not a problem.

Add the Grafana repository to the list of external repositories and update the package list.

sudo add-apt-repository "deb https://packages.grafana.com/oss/deb stable main"

The add-apt-repository command may also generate a warning about apt-key being deprecated.

Update the package list and install Grafana.

sudo apt-get update
sudo apt-get install grafana

Notes

Grafana will listen on port 3000. This is the port for the Grafana user interface.

We have not yet configured nor started Grafana.

Results of wget | apt-key command
Results of add-apt-repository command
Results of sudo apt-get install grafana command