-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Main changes since 0.6.0: * cgroup properties collections (e.g. cgroup.controllers, cpu.weight, cpuset.cpus) * Support dumping with OpenMetrics format * Support dumping snapshots * Support specifying snapshot output file * memory.numa_stat collection * Various minor bugfixes Reviewed By: lnyng Differential Revision: D46912939 fbshipit-source-id: 8fbd8435918e76ff8cdcd2cc55144dd84fab9b7a
- Loading branch information
1 parent
99c5213
commit 40514f9
Showing
13 changed files
with
44 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "below" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "An interactive tool to view and record historical system data" | ||
|
@@ -21,31 +21,31 @@ unit-scripts = "../etc" | |
|
||
[dependencies] | ||
anyhow = "1.0.65" | ||
cgroupfs = { version = "0.6.3", path = "cgroupfs" } | ||
cgroupfs = { version = "0.7.0", path = "cgroupfs" } | ||
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] } | ||
clap_complete = "3.2.5" | ||
common = { package = "below-common", version = "0.6.3", path = "common" } | ||
config = { package = "below-config", version = "0.6.3", path = "config" } | ||
common = { package = "below-common", version = "0.7.0", path = "common" } | ||
config = { package = "below-config", version = "0.7.0", path = "config" } | ||
cursive = { version = "0.20.0", features = ["crossterm-backend"], default-features = false } | ||
dump = { package = "below-dump", version = "0.6.3", path = "dump" } | ||
dump = { package = "below-dump", version = "0.7.0", path = "dump" } | ||
futures = { version = "0.3.28", features = ["async-await", "compat"] } | ||
indicatif = { version = "0.17.3", features = ["improved_unicode", "rayon", "tokio"] } | ||
libbpf-rs = "0.20.1" | ||
libc = "0.2.139" | ||
model = { package = "below-model", version = "0.6.3", path = "model" } | ||
model = { package = "below-model", version = "0.7.0", path = "model" } | ||
once_cell = "1.12" | ||
plain = "0.2" | ||
procfs = { package = "fb_procfs", version = "0.6.3", path = "procfs" } | ||
procfs = { package = "fb_procfs", version = "0.7.0", path = "procfs" } | ||
regex = "1.6.0" | ||
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] } | ||
signal-hook = "0.3" | ||
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] } | ||
slog-term = "2.8" | ||
store = { package = "below-store", version = "0.6.3", path = "store" } | ||
store = { package = "below-store", version = "0.7.0", path = "store" } | ||
tar = "0.4.38" | ||
tempdir = "0.3" | ||
users = "0.11" | ||
view = { package = "below-view", version = "0.6.3", path = "view" } | ||
view = { package = "below-view", version = "0.7.0", path = "view" } | ||
|
||
[dev-dependencies] | ||
maplit = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "below_derive" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "Proc macros for below" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "below-btrfs" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "A crate for reading btrfs" | ||
|
@@ -11,7 +11,7 @@ repository = "https://github.com/facebookincubator/below" | |
license = "Apache-2.0" | ||
|
||
[dependencies] | ||
common = { package = "below-common", version = "0.6.3", path = "../common" } | ||
common = { package = "below-common", version = "0.7.0", path = "../common" } | ||
libc = "0.2.139" | ||
nix = "0.25" | ||
openat = "0.1.21" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "cgroupfs" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "A crate for reading cgroupv2 data" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "below-common" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "Common below code" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "below-config" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "Configurations for below" | ||
|
@@ -11,8 +11,8 @@ license = "Apache-2.0" | |
|
||
[dependencies] | ||
anyhow = "1.0.65" | ||
btrfs = { package = "below-btrfs", version = "0.6.3", path = "../btrfs" } | ||
cgroupfs = { version = "0.6.3", path = "../cgroupfs" } | ||
btrfs = { package = "below-btrfs", version = "0.7.0", path = "../btrfs" } | ||
cgroupfs = { version = "0.7.0", path = "../cgroupfs" } | ||
once_cell = "1.12" | ||
serde = { version = "1.0.136", features = ["derive", "rc"] } | ||
toml = "0.7.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "below-dump" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "Dump crate for below" | ||
|
@@ -11,16 +11,16 @@ license = "Apache-2.0" | |
|
||
[dependencies] | ||
anyhow = "1.0.65" | ||
below_derive = { version = "0.6.3", path = "../below_derive" } | ||
below_derive = { version = "0.7.0", path = "../below_derive" } | ||
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] } | ||
common = { package = "below-common", version = "0.6.3", path = "../common" } | ||
model = { package = "below-model", version = "0.6.3", path = "../model" } | ||
common = { package = "below-common", version = "0.7.0", path = "../common" } | ||
model = { package = "below-model", version = "0.7.0", path = "../model" } | ||
once_cell = "1.12" | ||
regex = "1.6.0" | ||
render = { package = "below-render", version = "0.6.3", path = "../render" } | ||
render = { package = "below-render", version = "0.7.0", path = "../render" } | ||
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] } | ||
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] } | ||
store = { package = "below-store", version = "0.6.3", path = "../store" } | ||
store = { package = "below-store", version = "0.7.0", path = "../store" } | ||
tar = "0.4.38" | ||
tempdir = "0.3" | ||
toml = "0.7.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ | |
|
||
[package] | ||
name = "below-gpu-stats" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "GPU stats crate for below" | ||
repository = "https://github.com/facebookincubator/below" | ||
license = "Apache-2.0" | ||
|
||
[dependencies] | ||
common = { package = "below-common", version = "0.6.3", path = "../common" } | ||
common = { package = "below-common", version = "0.7.0", path = "../common" } | ||
serde = { version = "1.0.136", features = ["derive", "rc"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "below-model" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "Model crate for below" | ||
|
@@ -12,14 +12,14 @@ license = "Apache-2.0" | |
[dependencies] | ||
anyhow = "1.0.65" | ||
async-trait = "0.1.58" | ||
below_derive = { version = "0.6.3", path = "../below_derive" } | ||
btrfs = { package = "below-btrfs", version = "0.6.3", path = "../btrfs" } | ||
cgroupfs = { version = "0.6.3", path = "../cgroupfs" } | ||
common = { package = "below-common", version = "0.6.3", path = "../common" } | ||
gpu-stats = { package = "below-gpu-stats", version = "0.6.3", path = "../gpu_stats" } | ||
below_derive = { version = "0.7.0", path = "../below_derive" } | ||
btrfs = { package = "below-btrfs", version = "0.7.0", path = "../btrfs" } | ||
cgroupfs = { version = "0.7.0", path = "../cgroupfs" } | ||
common = { package = "below-common", version = "0.7.0", path = "../common" } | ||
gpu-stats = { package = "below-gpu-stats", version = "0.7.0", path = "../gpu_stats" } | ||
hostname = "0.3" | ||
os_info = "3.0.7" | ||
procfs = { package = "fb_procfs", version = "0.6.3", path = "../procfs" } | ||
procfs = { package = "fb_procfs", version = "0.7.0", path = "../procfs" } | ||
regex = "1.6.0" | ||
serde = { version = "1.0.136", features = ["derive", "rc"] } | ||
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "fb_procfs" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "A crate for reading procfs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ | |
|
||
[package] | ||
name = "below-render" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "Render crate for below" | ||
repository = "https://github.com/facebookincubator/below" | ||
license = "Apache-2.0" | ||
|
||
[dependencies] | ||
common = { package = "below-common", version = "0.6.3", path = "../common" } | ||
model = { package = "below-model", version = "0.6.3", path = "../model" } | ||
common = { package = "below-common", version = "0.7.0", path = "../common" } | ||
model = { package = "below-model", version = "0.7.0", path = "../model" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "below-store" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "Store crate for below" | ||
|
@@ -13,11 +13,11 @@ license = "Apache-2.0" | |
anyhow = "1.0.65" | ||
bitflags = "1.3" | ||
bytes = { version = "1.1", features = ["serde"] } | ||
common = { package = "below-common", version = "0.6.3", path = "../common" } | ||
common = { package = "below-common", version = "0.7.0", path = "../common" } | ||
humantime = "2.1" | ||
maplit = "1.0" | ||
memmap2 = "0.5.10" | ||
model = { package = "below-model", version = "0.6.3", path = "../model" } | ||
model = { package = "below-model", version = "0.7.0", path = "../model" } | ||
nix = "0.25" | ||
serde = { version = "1.0.136", features = ["derive", "rc"] } | ||
serde_cbor = "0.11" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[package] | ||
name = "below-view" | ||
version = "0.6.3" | ||
version = "0.7.0" | ||
authors = ["Daniel Xu <[email protected]>", "Facebook"] | ||
edition = "2021" | ||
description = "View crate for below" | ||
|
@@ -12,19 +12,19 @@ license = "Apache-2.0" | |
[dependencies] | ||
anyhow = "1.0.65" | ||
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false } | ||
common = { package = "below-common", version = "0.6.3", path = "../common" } | ||
common = { package = "below-common", version = "0.7.0", path = "../common" } | ||
crossterm = { version = "0.23.1", features = ["event-stream"] } | ||
cursive = { version = "0.20.0", features = ["crossterm-backend"], default-features = false } | ||
cursive_buffered_backend = "0.6.1" | ||
humantime = "2.1" | ||
itertools = "0.10.3" | ||
libc = "0.2.139" | ||
model = { package = "below-model", version = "0.6.3", path = "../model" } | ||
model = { package = "below-model", version = "0.7.0", path = "../model" } | ||
once_cell = "1.12" | ||
render = { package = "below-render", version = "0.6.3", path = "../render" } | ||
render = { package = "below-render", version = "0.7.0", path = "../render" } | ||
serde = { version = "1.0.136", features = ["derive", "rc"] } | ||
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] } | ||
store = { package = "below-store", version = "0.6.3", path = "../store" } | ||
store = { package = "below-store", version = "0.7.0", path = "../store" } | ||
toml = "0.7.3" | ||
|
||
[dev-dependencies] | ||
|
40514f9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brianc118 You forgot to regenerate
Cargo.lock
, so the released version cannot be built with--locked
.40514f9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jirutka thanks for catching this