mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-09 04:21: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.~~
8 lines
227 B
Rust
8 lines
227 B
Rust
//! This crate contains functions that are common across multiple `warp` HTTP servers in the
|
|
//! Lighthouse project. E.g., the `http_api` and `http_metrics` crates.
|
|
|
|
pub mod cors;
|
|
pub mod metrics;
|
|
pub mod reject;
|
|
pub mod task;
|