Spaces:
Running
Running
File size: 1,015 Bytes
98c9143 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | import { AsyncLocalStorage } from "node:async_hooks"
export interface RequestContext {
traceId: string
startTime: number
userAgent: string
sessionAffinity: string | undefined
parentSessionId: string | undefined
}
const TRACE_ID_MAX_LENGTH = 64
const TRACE_ID_PATTERN = /^\w[\w.-]*$/
const asyncLocalStorage = new AsyncLocalStorage<RequestContext>()
export const requestContext = {
getStore: () => asyncLocalStorage.getStore(),
run: <T>(context: RequestContext, callback: () => T) =>
asyncLocalStorage.run(context, callback),
}
export function generateTraceId(): string {
const timestamp = Date.now().toString(36)
const random = Math.random().toString(36).slice(2, 8)
return `${timestamp}-${random}`
}
export function resolveTraceId(traceId: string | null | undefined): string {
const candidate = traceId?.trim()
if (
!candidate
|| candidate.length > TRACE_ID_MAX_LENGTH
|| !TRACE_ID_PATTERN.test(candidate)
) {
return generateTraceId()
}
return candidate
}
|