mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-08 03:51:22 +00:00
26741944b1
## Issue Addressed NA ## Proposed Changes - Adds a HTTP server to the VC which provides Prometheus metrics. - Moves the health metrics into the `lighthouse_metrics` crate so it can be shared between BN/VC. - Sprinkle some metrics around the VC. - Update the book to indicate that we now have VC metrics. - Shifts the "waiting for genesis" logic later in the `ProductionValidatorClient::new_from_cli` - This is worth attention during the review. ## Additional Info - ~~`clippy` has some new lints that are failing. I'll deal with that in another PR.~~
21 lines
758 B
TOML
21 lines
758 B
TOML
[package]
|
|
name = "warp_utils"
|
|
version = "0.1.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
warp = { git = "https://github.com/paulhauner/warp", branch = "cors-wildcard" }
|
|
eth2 = { path = "../eth2" }
|
|
types = { path = "../../consensus/types" }
|
|
beacon_chain = { path = "../../beacon_node/beacon_chain" }
|
|
state_processing = { path = "../../consensus/state_processing" }
|
|
safe_arith = { path = "../../consensus/safe_arith" }
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
|
tokio = { version = "0.2.22", features = ["sync"] }
|
|
headers = "0.3.2"
|
|
lighthouse_metrics = { path = "../lighthouse_metrics" }
|
|
lazy_static = "1.4.0"
|