diff --git a/src/funcs.rs b/src/funcs.rs index c3c985e..ee6d154 100644 --- a/src/funcs.rs +++ b/src/funcs.rs @@ -47,7 +47,7 @@ pub fn time() -> u32 { .as_secs() as u32 } -pub fn time_ns() -> u128 { +pub fn time_mcs() -> u128 { SystemTime::now() .duration_since(UNIX_EPOCH) .unwrap() diff --git a/src/html.rs b/src/html.rs index ad6618b..aeeaf6a 100644 --- a/src/html.rs +++ b/src/html.rs @@ -16,7 +16,7 @@ pub const FOOTER_HTML: &str = r#" diff --git a/src/main.rs b/src/main.rs index 29de965..79f6715 100644 --- a/src/main.rs +++ b/src/main.rs @@ -151,7 +151,7 @@ async fn main() -> Result<()> { } async fn handle_connection(req: Request, pool: DBPool, ip: String) -> FullBytes { - let t = time_ns(); + let t = time_mcs(); if ip == "1.1.1.1" { } @@ -203,7 +203,7 @@ async fn handle_connection(req: Request, pool: DBPool, ip: String) -> headers.insert(hyper::header::CONTENT_TYPE, restype); parts.headers = headers; - let body = body.replace("RENDER_TIME", &format!("{}", time_ns() - t)); + let body = body.replace("PAGE_TIME", &format!("{}", time_mcs() - t)); Ok(Response::from_parts(parts, Full::new(Bytes::from(body)))) }