Skip to content

christianvari/crypto.com-chain-grafana-dashboard

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Crypto.com Chain Grafana Dashboard

A Grafana dashboard compatible with crypto.com chain

Preview

1 2

How To

We assume that you already have Grafana and Prometheus installed.

Enable Tendermint Metrics

sed -i 's/prometheus = false/prometheus = true/g' <YOUR-NODE-HOMEDIR>/config/config.toml

After restarting your node, you should be able to access the tendermint metrics(default port is 26660): http://localhost:26660

Configure Prometheus Targets

Append a job under the scrape_configs of your prometheus.yml

      - job_name: cryptocom
        static_configs:
        - targets: ['<Validator-IP>:26660']
          labels:
            instance: validator
        - targets: ['<Sentry-0-IP>:26660']
          labels:
            instance: sentry-0
        - targets: ['<Sentry-1-IP>:26660']
          labels:
            instance: sentry-1

Reload prometheus config

curl -X POST http://<PROMETHEUS-IP>:9090/-/reload

Import Grafana Dashboard

import

Releases

No releases published

Packages

No packages published