UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

11 lines (10 loc) 576 B
import { type InstrumentationRuntime } from "#instrumentation/runtime.js"; import { type TraceCapturePolicy } from "#tracing/otel-declaration.js"; /** Zero-config local tracing admits every session in the development worker. @internal */ export declare const localTracePolicy: TraceCapturePolicy; /** Installs the zero-config local OTel runtime once in an `eve dev` worker. */ export declare function installLocalInstrumentationRuntime(input: { readonly appRoot: string; readonly frameworkVersion: string; readonly serviceName: string; }): InstrumentationRuntime;