eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
8 lines (7 loc) • 543 B
TypeScript
import type { InstrumentationEvent } from "#instrumentation/lifecycle.js";
import type { ChannelAudience } from "#shared/channel-audience.js";
import type { InstrumentationDecision } from "#shared/instrumentation-decision.js";
/** Applies OpenTelemetry's trace content ceiling to one OTel provider event. */
export declare function instrumentationEventForTraceDecision(event: InstrumentationEvent, decision: InstrumentationDecision, audience: ChannelAudience, options?: {
readonly applyAudienceCeiling?: boolean;
}): InstrumentationEvent;