Skip to content

Commit

Permalink
Bump to 0.8.0 (#8226)
Browse files Browse the repository at this point in the history
Summary:
Notable changes since 0.7.1:
* Support for ethtool stats.
* New cgroup stats including per-cgroup zswap memory usage, memory.min
  and kernel field from memory.stat.
* /sys/fs/resctrl data collection.
* /proc/slabinfo collection and display.
* viewrc support for `cgroup_name_width` to configure cgroup view name
  column width.

Fixes:
* Exitstat bpf program is fixed.

Pull Request resolved: #8226

Reviewed By: antonis-m

Differential Revision: D55491440

Pulled By: brianc118

fbshipit-source-id: 989004d5e6a3618e598a7efc8e59643dba19cfd3
  • Loading branch information
brianc118 authored and facebook-github-bot committed Mar 29, 2024
1 parent f1fc7f9 commit 717fea0
Show file tree
Hide file tree
Showing 16 changed files with 63 additions and 63 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions below/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "An interactive tool to view and record historical system data"
Expand All @@ -21,31 +21,31 @@ unit-scripts = "../etc"

[dependencies]
anyhow = "1.0.75"
cgroupfs = { version = "0.7.1", path = "cgroupfs" }
cgroupfs = { version = "0.8.0", path = "cgroupfs" }
clap = { version = "4.5.2", features = ["derive", "env", "string", "unicode", "wrap_help"] }
clap_complete = "4.5.1"
common = { package = "below-common", version = "0.7.1", path = "common" }
config = { package = "below-config", version = "0.7.1", path = "config" }
common = { package = "below-common", version = "0.8.0", path = "common" }
config = { package = "below-config", version = "0.8.0", path = "config" }
cursive = { version = "0.20.0", features = ["crossterm-backend"], default-features = false }
dump = { package = "below-dump", version = "0.7.1", path = "dump" }
dump = { package = "below-dump", version = "0.8.0", path = "dump" }
indicatif = { version = "0.17.6", features = ["improved_unicode", "rayon", "tokio"] }
libbpf-rs = { version = "0.22", git = "/~https://github.com/libbpf/libbpf-rs.git", rev = "56dca575089ab2144f51b7949a9ee4c9fc226a47", default-features = false }
libc = "0.2.139"
model = { package = "below-model", version = "0.7.1", path = "model" }
model = { package = "below-model", version = "0.8.0", path = "model" }
once_cell = "1.12"
plain = "0.2"
procfs = { package = "fb_procfs", version = "0.7.1", path = "procfs" }
procfs = { package = "fb_procfs", version = "0.8.0", path = "procfs" }
regex = "1.9.2"
serde_json = { version = "1.0.100", 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.7.1", path = "store" }
store = { package = "below-store", version = "0.8.0", path = "store" }
tar = "0.4.40"
tempfile = "3.8"
tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] }
uzers = "0.11.3"
view = { package = "below-view", version = "0.7.1", path = "view" }
view = { package = "below-view", version = "0.8.0", path = "view" }

[dev-dependencies]
maplit = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion below/below_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below_derive"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Proc macros for below"
Expand Down
4 changes: 2 additions & 2 deletions below/btrfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-btrfs"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "A crate for reading btrfs"
Expand All @@ -11,7 +11,7 @@ repository = "/~https://github.com/facebookincubator/below"
license = "Apache-2.0"

[dependencies]
common = { package = "below-common", version = "0.7.1", path = "../common" }
common = { package = "below-common", version = "0.8.0", path = "../common" }
libc = "0.2.139"
nix = "0.25"
openat = "0.1.21"
Expand Down
2 changes: 1 addition & 1 deletion below/cgroupfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "cgroupfs"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "A crate for reading cgroupv2 data"
Expand Down
2 changes: 1 addition & 1 deletion below/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-common"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Common below code"
Expand Down
6 changes: 3 additions & 3 deletions below/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-config"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Configurations for below"
Expand All @@ -11,8 +11,8 @@ license = "Apache-2.0"

[dependencies]
anyhow = "1.0.75"
btrfs = { package = "below-btrfs", version = "0.7.1", path = "../btrfs" }
cgroupfs = { version = "0.7.1", path = "../cgroupfs" }
btrfs = { package = "below-btrfs", version = "0.8.0", path = "../btrfs" }
cgroupfs = { version = "0.8.0", path = "../cgroupfs" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
toml = "0.8.4"

Expand Down
12 changes: 6 additions & 6 deletions below/dump/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-dump"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Dump crate for below"
Expand All @@ -11,17 +11,17 @@ license = "Apache-2.0"

[dependencies]
anyhow = "1.0.75"
below_derive = { version = "0.7.1", path = "../below_derive" }
below_derive = { version = "0.8.0", path = "../below_derive" }
clap = { version = "4.5.2", features = ["derive", "env", "string", "unicode", "wrap_help"] }
common = { package = "below-common", version = "0.7.1", path = "../common" }
common = { package = "below-common", version = "0.8.0", path = "../common" }
enum-iterator = "1.4.1"
model = { package = "below-model", version = "0.7.1", path = "../model" }
model = { package = "below-model", version = "0.8.0", path = "../model" }
once_cell = "1.12"
regex = "1.9.2"
render = { package = "below-render", version = "0.7.1", path = "../render" }
render = { package = "below-render", version = "0.8.0", path = "../render" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
store = { package = "below-store", version = "0.7.1", path = "../store" }
store = { package = "below-store", version = "0.8.0", path = "../store" }
tar = "0.4.40"
tempfile = "3.8"
toml = "0.8.4"
2 changes: 1 addition & 1 deletion below/ethtool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-ethtool"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Model crate for below"
Expand Down
4 changes: 2 additions & 2 deletions below/gpu_stats/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

[package]
name = "below-gpu-stats"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "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.7.1", path = "../common" }
common = { package = "below-common", version = "0.8.0", path = "../common" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
18 changes: 9 additions & 9 deletions below/model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-model"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Model crate for below"
Expand All @@ -12,18 +12,18 @@ license = "Apache-2.0"
[dependencies]
anyhow = "1.0.75"
async-trait = "0.1.71"
below_derive = { version = "0.7.1", path = "../below_derive" }
btrfs = { package = "below-btrfs", version = "0.7.1", path = "../btrfs" }
cgroupfs = { version = "0.7.1", path = "../cgroupfs" }
common = { package = "below-common", version = "0.7.1", path = "../common" }
below_derive = { version = "0.8.0", path = "../below_derive" }
btrfs = { package = "below-btrfs", version = "0.8.0", path = "../btrfs" }
cgroupfs = { version = "0.8.0", path = "../cgroupfs" }
common = { package = "below-common", version = "0.8.0", path = "../common" }
enum-iterator = "1.4.1"
ethtool = { package = "below-ethtool", version = "0.7.1", path = "../ethtool" }
gpu-stats = { package = "below-gpu-stats", version = "0.7.1", path = "../gpu_stats" }
ethtool = { package = "below-ethtool", version = "0.8.0", path = "../ethtool" }
gpu-stats = { package = "below-gpu-stats", version = "0.8.0", path = "../gpu_stats" }
hostname = "0.3"
os_info = "3.0.7"
procfs = { package = "fb_procfs", version = "0.7.1", path = "../procfs" }
procfs = { package = "fb_procfs", version = "0.8.0", path = "../procfs" }
regex = "1.9.2"
resctrlfs = { version = "0.7.1", path = "../resctrlfs" }
resctrlfs = { version = "0.8.0", path = "../resctrlfs" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
Expand Down
2 changes: 1 addition & 1 deletion below/procfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "fb_procfs"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "A crate for reading procfs"
Expand Down
6 changes: 3 additions & 3 deletions below/render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

[package]
name = "below-render"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "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.7.1", path = "../common" }
model = { package = "below-model", version = "0.7.1", path = "../model" }
common = { package = "below-common", version = "0.8.0", path = "../common" }
model = { package = "below-model", version = "0.8.0", path = "../model" }
2 changes: 1 addition & 1 deletion below/resctrlfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "resctrlfs"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "A crate for reading resctrl fs data"
Expand Down
6 changes: 3 additions & 3 deletions below/store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-store"
version = "0.7.1"
version = "0.8.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Store crate for below"
Expand All @@ -13,11 +13,11 @@ license = "Apache-2.0"
anyhow = "1.0.75"
bitflags = { version = "2.4", features = ["serde"] }
bytes = { version = "1.1", features = ["serde"] }
common = { package = "below-common", version = "0.7.1", path = "../common" }
common = { package = "below-common", version = "0.8.0", path = "../common" }
humantime = "2.1"
maplit = "1.0"
memmap2 = "0.5.10"
model = { package = "below-model", version = "0.7.1", path = "../model" }
model = { package = "below-model", version = "0.8.0", path = "../model" }
nix = "0.25"
serde = { version = "1.0.185", features = ["derive", "rc"] }
serde_cbor = "0.11"
Expand Down
Loading

0 comments on commit 717fea0

Please sign in to comment.