Crates.io | axum-server-timing |
lib.rs | axum-server-timing |
version | 1.0.1 |
source | src |
created_at | 2023-04-19 17:50:57.174108 |
updated_at | 2024-08-19 08:54:44.351275 |
description | An axum layer to inject the Server-Timing HTTP header into the response. |
homepage | |
repository | https://github.com/JensWalter/axum-server-timing/ |
max_upload_size | |
id | 843778 |
size | 62,065 |
An axum layer to inject the Server-Timing HTTP header into the response.
For a reference on the header please see developer.mozilla.org.
Using the layer to inject the Server-Timing Header.
let app = Router::new()
.route("/", get(handler))
.layer(axum_server_timing::ServerTimingLayer::new("HelloService"));
HTTP/1.1 200 OK
content-type: text/html; charset=utf-8
content-length: 22
server-timing: HelloService;dur=102
date: Wed, 19 Apr 2023 15:25:40 GMT
<h1>Hello, World!</h1>
Using the layer to inject the Server-Timing Header with description.
let app = Router::new()
.route("/", get(handler))
.layer(
axum_server_timing::ServerTimingLayer::new("HelloService")
.with_description("whatever")
);
HTTP/1.1 200 OK
content-type: text/html; charset=utf-8
content-length: 22
server-timing: HelloService;desc="whatever";dur=102
date: Wed, 19 Apr 2023 15:25:40 GMT
<h1>Hello, World!</h1>