@mastra/core
Version:
Mastra is a framework for building AI-powered applications and agents with a modern TypeScript stack.
15 lines • 488 B
TypeScript
import { SpanKind } from '@opentelemetry/api';
export declare function withSpan(options: {
spanName?: string;
skipIfNoTelemetry?: boolean;
spanKind?: SpanKind;
tracerName?: string;
}): any;
export declare function InstrumentClass(options?: {
prefix?: string;
spanKind?: SpanKind;
excludeMethods?: string[];
methodFilter?: (methodName: string) => boolean;
tracerName?: string;
}): (target: any) => any;
//# sourceMappingURL=telemetry.decorators.d.ts.map