Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,22 @@ Monitor your Ethereum Geth server with Prometheus and Grafana. Checkout the [Gra
Run this Prometheus Exporter in a [Docker container](https://hub.docker.com/r/hunterlong/gethexporter/builds/)! Include your Geth server endpoint as `GETH` environment variable.
```bash
docker run -it -d -p 9090:9090 \
-e "GETH="http://mygethserverhere.com:8545" \
-e GETH="http://mygethserverhere.com:8545" \
hunterlong/gethexporter
```

For docker compose:

```yaml
services:
geth_monitor:
image: hunterlong/gethexporter:latest
ports:
- '9090:9090'
environment:
- GETH=http://geth:8545
```

## Features
- Current and Average Gas Price
- Total amount of ERC20 Token Transfers
Expand Down