Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
support openethereum/geth metrics (#580)
Browse files Browse the repository at this point in the history
  • Loading branch information
odyslam committed Jun 8, 2021
1 parent c787238 commit f90d7ff
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions config/go.d/prometheus.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1521,3 +1521,32 @@ jobs:
- name: caddy_local
url: 'http://localhost:2019/metrics'
expected_prefix: 'caddy_'
# Run Geth with --metrics flag.
# Docs: https://geth.ethereum.org/docs/interface/metrics
- name: geth_local
url: 'http://127.0.0.1:6060/debug/metrics/prometheus'
expected_prefix: 'eth_'
# Run OpenEthereum with --metrics flag.
# Docs: https://openethereum.github.io/Configuring-OpenEthereum.html?q=metrics-interface
- name: openethereum_local
url: 'http://127.0.0.1:3000/metrics'
expected_prefix: 'blockchaincache_'
- name: pushgateway_local
url: 'http://127.0.0.1:9091/metrics'
expected_prefix: 'pushgateway_'
selector:
allow:
- pushgateway_*
# Run Nethermind with --Metrics.Enabled true.
# Docs: https://docs.nethermind.io/nethermind/ethereum-client/metrics/setting-up-local-metrics-infrastracture
- name: nethermind_local
url: 'http://127.0.0.1:9091/metrics'
expected_prefix: 'nethermind_'
selector:
allow:
- nethermind*
# Run Besu with --metrics-enabled flag.
# Docs: https://besu.hyperledger.org/en/stable/HowTo/Monitor/Metrics/
- name: besu_local
url: '127.0.0.1:9545'
expected_prefix: 'besu_'

0 comments on commit f90d7ff

Please sign in to comment.