/** * Datadog Exporter * Exports spans to Datadog APM platform */ import type { DatadogExporterConfig, ExporterHealthStatus, ExportResult, SpanData } from "../../types/index.js"; import { BaseExporter } from "./baseExporter.js"; /** * Datadog exporter for enterprise APM integration * Supports trace correlation and AI-specific custom metrics */ export declare class DatadogExporter extends BaseExporter { private readonly apiKey; private readonly appKey?; private readonly site; private readonly service; private readonly source; private readonly logsEndpoint; constructor(config: DatadogExporterConfig); initialize(): Promise; exportSpan(span: SpanData): Promise; exportBatch(spans: SpanData[]): Promise; flush(): Promise; shutdown(): Promise; healthCheck(): Promise; /** * Verify connectivity to Datadog API */ protected ping(): Promise; /** * Convert span to Datadog log format with trace correlation */ private convertToDatadogLog; /** * Build Datadog tags from span attributes */ private buildTags; }