我已经创建了一个私有的以太网络,并且想要探索一下监控。我在一个终端窗口中启动了一个geth实例。我尝试运行geth monitor --attach /path/to/geth.ipc,但收到以下错误:
Fatal: Metric pattern trie/cachemiss resolved to unexpected type: string
监控专用网络上的节点的最佳方式是什么?
发布于 2017-08-31 23:52:14
您应该在命令行中指出指标:geth monitor --attach ./chain-data/geth.ipc system/memory/allocs/AvgRate05Min
重要的前提条件是必须使用--metrics启动geth
更多详细信息https://github.com/ethereum/go-ethereum/wiki/Metrics-and-Monitoring
发布于 2018-05-11 14:01:24
为了监控我的专用网络,我使用一个类似于ethstats.net的自托管站点
有关详细说明,请访问my post
https://stackoverflow.com/questions/45969861
复制相似问题