Skip to content

Commit

Permalink
Bump to 0.7.0
Browse files Browse the repository at this point in the history
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
brianc118 authored and facebook-github-bot committed Jun 23, 2023
1 parent 99c5213 commit 40514f9
Show file tree
Hide file tree
Showing 13 changed files with 44 additions and 44 deletions.
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.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"
Expand All @@ -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"
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.6.3"
version = "0.7.0"
authors = ["Daniel Xu <[email protected]>", "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.6.3"
version = "0.7.0"
authors = ["Daniel Xu <[email protected]>", "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.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"
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.6.3"
version = "0.7.0"
authors = ["Daniel Xu <[email protected]>", "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.6.3"
version = "0.7.0"
authors = ["Daniel Xu <[email protected]>", "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.6.3"
version = "0.7.0"
authors = ["Daniel Xu <[email protected]>", "Facebook"]
edition = "2021"
description = "Configurations for below"
Expand All @@ -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"
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.6.3"
version = "0.7.0"
authors = ["Daniel Xu <[email protected]>", "Facebook"]
edition = "2021"
description = "Dump crate for below"
Expand All @@ -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"
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.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"] }
14 changes: 7 additions & 7 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.6.3"
version = "0.7.0"
authors = ["Daniel Xu <[email protected]>", "Facebook"]
edition = "2021"
description = "Model crate for below"
Expand All @@ -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"] }
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.6.3"
version = "0.7.0"
authors = ["Daniel Xu <[email protected]>", "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.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" }
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.6.3"
version = "0.7.0"
authors = ["Daniel Xu <[email protected]>", "Facebook"]
edition = "2021"
description = "Store crate for below"
Expand All @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions below/view/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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]
Expand Down

2 comments on commit 40514f9

@jirutka
Copy link
Contributor

@jirutka jirutka commented on 40514f9 Jul 9, 2023

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.

@brianc118
Copy link
Contributor Author

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

Please sign in to comment.