Add block construction prometheus metrics (#6030)

* Add basic authorship metrics

* fixes

* no arc

* move to crate

* Update client/proposer-metrics/Cargo.toml

Co-authored-by: Max Inden <mail@max-inden.de>

* remove prefix

* use HistogramTimer

* Update client/proposer-metrics/src/lib.rs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Update client/basic-authorship/src/basic_authorship.rs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Update client/basic-authorship/src/basic_authorship.rs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Update client/basic-authorship/src/basic_authorship.rs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Update client/basic-authorship/src/basic_authorship.rs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Update client/basic-authorship/src/basic_authorship.rs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Update client/proposer-metrics/src/lib.rs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Update client/proposer-metrics/src/lib.rs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

Co-authored-by: Max Inden <mail@max-inden.de>
Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
Nikolay Volf
2020-05-18 16:48:44 +03:00
committed by GitHub
parent 09a16a30a6
commit dd573374e0
11 changed files with 139 additions and 16 deletions
+5 -3
View File
@@ -12,9 +12,11 @@ description = "Basic implementation of block-authoring logic."
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
log = "0.4.8"
futures = "0.3.4"
codec = { package = "parity-scale-codec", version = "1.3.0" }
futures = "0.3.4"
futures-timer = "3.0.1"
log = "0.4.8"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-dev"}
sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
@@ -25,8 +27,8 @@ sp-inherents = { version = "2.0.0-dev", path = "../../primitives/inherents" }
sc-telemetry = { version = "2.0.0-dev", path = "../telemetry" }
sp-transaction-pool = { version = "2.0.0-dev", path = "../../primitives/transaction-pool" }
sc-block-builder = { version = "0.8.0-dev", path = "../block-builder" }
sc-proposer-metrics = { version = "0.8.0-dev", path = "../proposer-metrics" }
tokio-executor = { version = "0.2.0-alpha.6", features = ["blocking"] }
futures-timer = "3.0.1"
[dev-dependencies]
sc-transaction-pool = { version = "2.0.0-dev", path = "../../client/transaction-pool" }