服务器计时中间件
该 服务器计时 中间件在响应标头中提供性能指标。
信息
注意:在 Cloudflare Workers 上,计时器指标可能不准确,因为 计时器仅显示上次 I/O 的时间.
导入
ts
import { Hono } from 'hono'
import { timing, setMetric, startTime, endTime } from 'hono/timing'
import type { TimingVariables } from 'hono/timing'
用法
js
// Specify the variable types to infer the `c.get('metric')`:
type Variables = TimingVariables
const app = new Hono<{ Variables: Variables }>()
// add the middleware to your router
app.use(timing());
app.get('/', async (c) => {
// add custom metrics
setMetric(c, 'region', 'europe-west3')
// add custom metrics with timing, must be in milliseconds
setMetric(c, 'custom', 23.8, 'My custom Metric')
// start a new timer
startTime(c, 'db');
const data = await db.findMany(...);
// end the timer
endTime(c, 'db');
return c.json({ response: data });
});
条件启用
ts
const app = new Hono()
app.use(
'*',
timing({
// c: Context of the request
enabled: (c) => c.req.method === 'POST',
})
)
结果
选项
可选 total: boolean
显示总响应时间。默认值为 true
。
可选 enabled: boolean
| (c: Context) => boolean
计时是否应添加到标头中。默认值为 true
。
可选 totalDescription: boolean
总响应时间的描述。默认值为 Total Response Time
。
可选 autoEnd: boolean
如果 startTime()
应该在请求结束时自动结束。如果禁用,未手动结束的计时器将不会显示。
可选 crossOrigin: boolean
| string
| (c: Context) => boolean | string
此计时标头应可读的来源。
- 如果为 false,则仅来自当前来源。
- 如果为 true,则来自所有来源。
- 如果为字符串,则来自此域(多个)。多个域必须用逗号分隔。
默认值为 false
。了解更多 文档.