Variable TracingHandlerSchemaConst
TracingHandlerSchema: ZodObject<
{
span: ZodString;
span_attributes: ZodOptional<ZodRecord<ZodString, ZodString>>;
} & { handler: ZodLiteral<"tracing"> },
"strip",
ZodTypeAny,
{
handler: "tracing";
span: string;
span_attributes?: Record<string, string>;
},
{
handler: "tracing";
span: string;
span_attributes?: Record<string, string>;
},
> = ...
Tracing handler schema - distributed tracing
Enables distributed tracing (OpenTelemetry) for requests.