Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md (docker) #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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