Configure Ethereum Metrics Exporter
Configure the consensus and execution clients to which Ethereum Metrics Exporter will listen
Configure Ethereum Metrics Exporter
Edit the eth-metrics.yml
file.
Insert the following text into the eth-metrics.yml
file.
Make the following customizations to the text inserted:
Replace
<CONSENSUS_CLIENT_URL>
with the URL to your consensus client API. It should look similar tohttp://localhost:3500/
. You can replacelocalhost
with the IP address of your consensus client, if it is not running on the local host. Use the correct port for your consensus client.Default Consensus Client API Ports
Lighthouse: 5052
Lodestar: 9596
Nimbus: 5052
Prysm: 3500
Teku: 5051
Replace
<CONSENSUS_CLIENT_NAME>
with one of the following execution client names:Lighthouse Beacon
,Lodestar Beacon
,Nimbus
,Prysm Beacon
,Teku
.Replace
<EXECUTION_CLIENT_URL>
with the URL to your execution client API. It should look similar tohttp://localhost:8545
. You can replacelocalhost
with the IP address of your execution client, if it is not running on the local host. All execution clients use the same port.Replace
<EXECUTION_CLIENT_URL>
with one of the following execution client names:Besu
,Erigon
,Geth
,Nethermind
.
When you are done making changes, you final eth-metrics.yml
file might look something like the following.
Save the file and exit the editor.
Last updated