Correct time

This commit is contained in:
BitHeaven 2024-03-22 16:34:06 +05:00
parent aeceb98ad5
commit b577904d75
3 changed files with 4 additions and 4 deletions

View File

@ -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()

View File

@ -16,7 +16,7 @@ pub const FOOTER_HTML: &str = r#"
</main>
<footer>
<hr>
Render time: RENDER_TIME&micro;s.
Page time: PAGE_TIME&micro;s.
Made by <a href="//bitheaven.ru/">BitHeaven</a>.
</footer>
</body>

View File

@ -151,7 +151,7 @@ async fn main() -> Result<()> {
}
async fn handle_connection(req: Request<Incoming>, 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<Incoming>, 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))))
}