eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
11 lines (10 loc) • 577 B
TypeScript
import { type InstrumentationRuntime } from "#instrumentation/runtime.js";
import { type TraceCapturePolicy } from "#tracing/otel-declaration.js";
/** Zero-config local tracing keeps unclassified HTTP/TUI sessions observable. @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;