Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ updates:
- "metrics"
- "metrics-tracing-context"
- "metrics-util"
netlink:
patterns:
- "netlink-*"
graphql:
patterns:
- "async-graphql*"
Expand Down
24 changes: 16 additions & 8 deletions Cargo.lock

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

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -442,9 +442,8 @@ windows-service = "0.8.0"
nix = { version = "0.26.2", default-features = false, features = ["socket", "signal"] }

[target.'cfg(target_os = "linux")'.dependencies]
netlink-packet-utils = "0.5.2"
netlink-packet-sock-diag = "0.4.2"
netlink-packet-core = "0.7.0"
netlink-packet-sock-diag = { version = "0.4.2" }
netlink-packet-core = { version = "0.8.1" }
netlink-sys = { version = "0.8.7", features = ["tokio_socket"] }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/sources/host_metrics/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ enum TcpError {
NetlinkSend { source: io::Error },
#[snafu(display("Could not parse netlink response: {}", source))]
NetlinkParse {
source: netlink_packet_utils::DecodeError,
source: netlink_packet_core::DecodeError,
},
#[snafu(display("Could not recognize TCP state {state}"))]
InvalidTcpState { state: u8 },
Expand Down
Loading