Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface OTELExporterConfig

    interface OTELExporterConfig {
        enabled: boolean;
        endpoint: string;
        flushIntervalMs: number;
        headers?: Record<string, string>;
        maxBatchSize: number;
        resourceAttributes?: Record<string, string>;
        serviceName: string;
        serviceVersion?: string;
    }
    Index
    enabled: boolean

    Whether to enable export (can be disabled for testing)

    endpoint: string

    OTLP endpoint URL (e.g. http://localhost:4318/v1/traces)

    flushIntervalMs: number

    Flush interval in ms

    headers?: Record<string, string>

    Custom headers for OTLP requests

    maxBatchSize: number

    Max spans per batch before auto-flush

    resourceAttributes?: Record<string, string>

    Additional resource attributes

    serviceName: string

    Service name for resource attribute

    serviceVersion?: string

    Service version