web3-proxy/web3_proxy/src/metrics_frontend.rs

59 lines
2.0 KiB
Rust
Raw Normal View History

2022-09-20 09:58:40 +03:00
use axum::headers::HeaderName;
use axum::http::HeaderValue;
use axum::response::{IntoResponse, Response};
use axum::{routing::get, Extension, Router};
2022-11-12 11:24:32 +03:00
use log::info;
2022-09-20 09:58:40 +03:00
use std::net::SocketAddr;
use std::sync::Arc;
use crate::app::Web3ProxyApp;
/// Run a prometheus metrics server on the given port.
2022-11-12 11:24:32 +03:00
2022-09-20 09:58:40 +03:00
pub async fn serve(app: Arc<Web3ProxyApp>, port: u16) -> anyhow::Result<()> {
// build our application with a route
// order most to least common
// TODO: 404 any unhandled routes?
let app = Router::new().route("/", get(root)).layer(Extension(app));
// run our app with hyper
// TODO: allow only listening on localhost?
let addr = SocketAddr::from(([0, 0, 0, 0], port));
info!("prometheus listening on port {}", port);
// TODO: into_make_service is enough if we always run behind a proxy. make into_make_service_with_connect_info optional?
/*
InsecureClientIp sequentially looks for an IP in:
2022-09-20 09:58:40 +03:00
- x-forwarded-for header (de-facto standard)
- x-real-ip header
- forwarded header (new standard)
- axum::extract::ConnectInfo (if not behind proxy)
Since we run behind haproxy, x-forwarded-for will be set.
We probably won't need into_make_service_with_connect_info, but it shouldn't hurt.
2022-09-20 09:58:40 +03:00
*/
let service = app.into_make_service_with_connect_info::<SocketAddr>();
// let service = app.into_make_service();
// `axum::Server` is a re-export of `hyper::Server`
axum::Server::bind(&addr)
// TODO: option to use with_connect_info. we want it in dev, but not when running behind a proxy, but not
.serve(service)
.await
.map_err(Into::into)
}
async fn root(Extension(app): Extension<Arc<Web3ProxyApp>>) -> Response {
2022-12-28 09:11:18 +03:00
let serialized = app.prometheus_metrics().await;
2022-09-20 09:58:40 +03:00
let mut r = serialized.into_response();
// // TODO: is there an easier way to do this?
r.headers_mut().insert(
HeaderName::from_static("content-type"),
HeaderValue::from_static("application/openmetrics-text; version=1.0.0; charset=utf-8"),
);
r
}