mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 22:32:55 +00:00
* chore: print source error in mem-prof * feat(common-pprof): add pprof crate * feat(servers): Add pprof handler to router refactor the mem_prof handler to avoid checking feature while registering router * feat(servers): pprof handler support different output type * docs(common-pprof): Add readme * feat(common-pprof): Build guard using code in pprof-rs's example * feat(common-pprof): use prost * feat: don't add timeout to perf api * feat: add feature pprof * feat: update readme * test: fix tests * feat: close region in TestBase * feat(pprof): addres comments
17 lines
327 B
TOML
17 lines
327 B
TOML
[package]
|
|
name = "common-pprof"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
common-error = { path = "../error" }
|
|
pprof = { version = "0.11", features = [
|
|
"flamegraph",
|
|
"prost-codec",
|
|
"protobuf",
|
|
] }
|
|
prost.workspace = true
|
|
snafu.workspace = true
|
|
tokio.workspace = true
|