mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 07:01:03 +00:00
247822bb33
This PR refactors the metrics measuring and Prometheus exposing entity in sc-service into its own submodule and extends the parameters it exposes by: - system load average (over one, five and 15min) - the TCP connection state of the process (lsof), refs #5304 - number of tokio threads - number of known forks - counter for items in each unbounded queue (with internal unbounded channels) - number of file descriptors opened by this process (*nix only at this point) - number of system threads (*nix only at this point) refs #4679 Co-authored-by: Max Inden <mail@max-inden.de> Co-authored-by: Ashley <ashley.ruglys@gmail.com>
26 lines
656 B
TOML
26 lines
656 B
TOML
[package]
|
|
description = "Connectivity manager based on reputation"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "sc-peerset"
|
|
version = "2.0.0-alpha.5"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
documentation = "https://docs.rs/sc-peerset"
|
|
|
|
|
|
[dependencies]
|
|
futures = "0.3.4"
|
|
libp2p = { version = "0.16.2", default-features = false }
|
|
sp-utils = { version = "2.0.0-alpha.5", path = "../../primitives/utils"}
|
|
log = "0.4.8"
|
|
serde_json = "1.0.41"
|
|
wasm-timer = "0.2"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.2"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|