> For the complete documentation index, see [llms.txt](https://docs.stakelocal.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stakelocal.io/dashboard-installation/prometheus-jobs-and-targets/ethereum-address-targets.md).

# Ethereum Address Targets

## Ethereum Address Targets

The Stake Local Dashboard can monitor the balance of fee addresses, withdrawal addresses, or any other Ethereum address. Due to the limited data available, it cannot provide accurate long-term reporting of earnings/fees. However, it can provide address balances and their annualized rates of change a calculated over various periods.

Edit the addresses configuration file in the `/etc/prometheus/files_sd/stakelocal/` directory.

```bash
sudo nano /etc/prometheus/files_sd/stakelocal/addresses.yml
```

It should look like the following.

```yaml
    - targets: []
      labels:
        network: 'Mainnet'
        host: 'Default Host'
        service: ''
        group: 'Default Group'
        instance: '127.0.0.1:8545'
        explorer: 'etherscan.io'
```

Update the `targets` line to include a comma-delimited list of Ethereum addresses to be monitored in between the square brackets.

Example values:

* `-targets: [ 0x0000000000000000000000000000000000000000, 0x0000000000000000000000000000000000000000, 0x0000000000000000000000000000000000000000 ]`
* `-targets: [ "0x0000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000" ]`
* `-targets: [ '0x0000000000000000000000000000000000000000', '0x0000000000000000000000000000000000000000', '0x0000000000000000000000000000000000000000' ]`

If the execution client being queried is not on the local host or uses a non-standard port, update those on the `instance` line.

Update the `network`, `host`, `service`, `group`, and `explorer` labels, as needed. See [About Stake Local Labels](/dashboard-installation/prometheus-jobs-and-targets/about-stake-local-labels.md) for label definitions.

{% hint style="info" %}
The service label is optional. It only serves to identify the type of client being queried in Ethereum address requests, but the value itself is not presently used in the dashboard.
{% endhint %}

An example `addresses.yml` file for the Goerli network could look like the following.

```
    - targets: [ 0x0000000000000000000000000000000000000000, 0x0000000000000000000000000000000000000000 ]
      labels:
        network: 'Goerli'
        host: 'nuc'
        service: 'Geth'
        group: 'Goerli Prysm/Geth'
        instance: '127.0.0.1:8545'
        explorer: 'goerli.etherscan.io'
```

Save the file and exit the editor.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.stakelocal.io/dashboard-installation/prometheus-jobs-and-targets/ethereum-address-targets.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
