Correct time
This commit is contained in:
parent
aeceb98ad5
commit
b577904d75
@ -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()
|
||||
|
@ -16,7 +16,7 @@ pub const FOOTER_HTML: &str = r#"
|
||||
</main>
|
||||
<footer>
|
||||
<hr>
|
||||
Render time: RENDER_TIMEµs.
|
||||
Page time: PAGE_TIMEµs.
|
||||
Made by <a href="//bitheaven.ru/">BitHeaven</a>.
|
||||
</footer>
|
||||
</body>
|
||||
|
@ -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))))
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user