1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00
electrs/doc/monitoring.md
2023-01-27 17:21:11 +02:00

505 B

Monitoring

Indexing and serving metrics are exported via Prometheus:

$ sudo apt install prometheus

Add electrs job to scrape_configs section in /etc/prometheus/prometheus.yml:

  - job_name: electrs
    static_configs:
      - targets: ['localhost:4224']

Restart and check the collected metrics:

$ sudo systemctl restart prometheus
$ firefox 'http://localhost:9090/graph?g0.range_input=1h&g0.expr=index_height&g0.tab=0'