diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-06-24 19:38:58 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-06-24 23:34:05 +0800 |
commit | e5b820c47b9343d3801e1ebbeb4a8f40843ea87c (patch) | |
tree | 8c8785f014ed8033fd26129cd553c9635631fb50 /cmd/geth/main.go | |
parent | bde2ff034317db977354e0855e6406f9428899ea (diff) | |
download | go-tangerine-e5b820c47b9343d3801e1ebbeb4a8f40843ea87c.tar.gz go-tangerine-e5b820c47b9343d3801e1ebbeb4a8f40843ea87c.tar.zst go-tangerine-e5b820c47b9343d3801e1ebbeb4a8f40843ea87c.zip |
cmd/geth, rpc/api: extend metrics API, add a basic monitor command
Diffstat (limited to 'cmd/geth/main.go')
-rw-r--r-- | cmd/geth/main.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 963aced15..f7b4810cd 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -217,6 +217,16 @@ This command allows to open a console on a running geth node. `, }, { + Action: monitor, + Name: "monitor", + Usage: `Geth Monitor: node metrics monitoring and visualization`, + Description: ` +The Geth monitor is a tool to collect and visualize various internal metrics +gathered by the node, supporting different chart types as well as the capacity +to display multiple metrics simultaneously. +`, + }, + { Action: execJSFiles, Name: "js", Usage: `executes the given JavaScript files in the Geth JavaScript VM`, |