Options for Jaeger configuration

interface ExporterConfig {
    endpoint?: string;
    flushTimeout?: number;
    host?: string;
    maxPacketSize?: number;
    password?: string;
    port?: number;
    tags?: Tag[];
    username?: string;
}

Properties

endpoint?: string
flushTimeout?: number

Time to wait for an onShutdown flush to finish before closing the sender

host?: string
maxPacketSize?: number
password?: string
port?: number
tags?: Tag[]
username?: string