mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 12:11:59 +00:00
Use global prometheus gather at rest api
This commit is contained in:
@@ -116,7 +116,3 @@ lazy_static! {
|
||||
pub static ref FORK_CHOICE_TIMES: Result<Histogram> =
|
||||
register_histogram!("fork_choice_time", "Full runtime of fork choice");
|
||||
}
|
||||
|
||||
pub fn gather_metrics() -> Vec<prometheus::proto::MetricFamily> {
|
||||
prometheus::gather()
|
||||
}
|
||||
|
||||
@@ -7,9 +7,7 @@ pub fn get_prometheus(_req: Request<Body>) -> ApiResult {
|
||||
let mut buffer = vec![];
|
||||
let encoder = TextEncoder::new();
|
||||
|
||||
encoder
|
||||
.encode(&beacon_chain::gather_metrics(), &mut buffer)
|
||||
.unwrap();
|
||||
encoder.encode(&prometheus::gather(), &mut buffer).unwrap();
|
||||
|
||||
String::from_utf8(buffer)
|
||||
.map(|string| success_response(Body::from(string)))
|
||||
|
||||
Reference in New Issue
Block a user