230168deff
This PR adds some health endpoints for the beacon node and the validator client. Specifically it adds the endpoint: `/lighthouse/ui/health` These are not entirely stable yet. But provide a base for modification for our UI. These also may have issues with various platforms and may need modification.
14 lines
305 B
TOML
14 lines
305 B
TOML
[package]
|
|
name = "system_health"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
lighthouse_network = { path = "../../beacon_node/lighthouse_network" }
|
|
types = { path = "../../consensus/types" }
|
|
sysinfo = "0.26.5"
|
|
serde = "1.0.116"
|
|
serde_derive = "1.0.116"
|
|
serde_json = "1.0.58"
|
|
parking_lot = "0.12.0"
|