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

Metrics collecting and reporting support #1321

Merged
merged 23 commits into from
Jun 25, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
821e01b
cmd/geth, eth/fetcher: initial metrics support
karalabe Jun 19, 2015
6994a3d
p2p: instrument P2P networking layer
karalabe Jun 21, 2015
b426301
cmd/geth, eth/fetcher: polish metrics reporting, add some more
karalabe Jun 21, 2015
7f92e70
cmd/geth, core: impl. percentile reporting, instrument insertions
karalabe Jun 21, 2015
7bd71fa
godeps: pull in go-metrics
karalabe Jun 22, 2015
43e4a65
core, ethdb: instrument the block and state db
karalabe Jun 22, 2015
6260b86
eth/fetcher: fix failed merge
karalabe Jun 22, 2015
792b0dd
core, eth, eth/fetcher, ethdb: polish metrics gathering a bit
karalabe Jun 23, 2015
0609fcf
eth: make sure dbs are lvldb before instrumenting
karalabe Jun 23, 2015
803b3c4
eth, ethdb: measure database operation latencies too
karalabe Jun 23, 2015
bde2ff0
cmd/geth, rpc/api: move the metrics into the new console
karalabe Jun 23, 2015
e5b820c
cmd/geth, rpc/api: extend metrics API, add a basic monitor command
karalabe Jun 24, 2015
bf99d5b
cmd/geth: polish the monitoring charts a bit
karalabe Jun 24, 2015
302187a
cmd/geth: allow branching metric patterns
karalabe Jun 24, 2015
92ef33d
rpc/api, cmd/geth: retrievel all percentiles, add time units
karalabe Jun 24, 2015
1ce40d7
Godeps: remove mist remnants, add termui deps
karalabe Jun 24, 2015
b98b444
cmd/geth: add attach and rows flags to the monitor command
karalabe Jun 25, 2015
d02f07a
cmd/geth: polish monitor visuals, add footer, refresh flag
karalabe Jun 25, 2015
3ea6b5a
cmd/geth: list the available metrics if none specified
karalabe Jun 25, 2015
c6e2af1
cmd/geth: limit the maximum chart colums to 6
karalabe Jun 25, 2015
c0343c8
cmd/geth: add memory stat collection too
karalabe Jun 25, 2015
fdbf8be
cmd/geth, rpc/api: fix reported metrics issues
karalabe Jun 25, 2015
e9c0b54
cmd/geth: finalize mem stats
karalabe Jun 25, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
26 changes: 13 additions & 13 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions Godeps/_workspace/src/github.com/gizak/termui/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Godeps/_workspace/src/github.com/gizak/termui/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions Godeps/_workspace/src/github.com/gizak/termui/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

159 changes: 159 additions & 0 deletions Godeps/_workspace/src/github.com/gizak/termui/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading