Monitoring Ethereum private network

1.3k Views Asked by At

I've created a private Ethereum network and would like to explore the monitoring. I started a geth instance in one terminal window. I tried running geth monitor --attach /path/to/geth.ipc and receive the following error:

Fatal: Metric pattern trie/cachemiss resolved to unexpected type: string

What is the best way to go about monitoring the node(s) on my private network?

2

There are 2 best solutions below

0
On

You should point out metrics in command line: geth monitor --attach ./chain-data/geth.ipc system/memory/allocs/AvgRate05Min

Important prerequisite is that geth must be started with --metrics

More details https://github.com/ethereum/go-ethereum/wiki/Metrics-and-Monitoring

0
On

For monitoring my private network, I use a self hosted site similar to ethstats.net

Detailed instructions can be found on my post