@microsoft/opentelemetry
    Preparing search index...

    Interface AgenticTokenCacheOptions

    Options for constructing an AgenticTokenCache instance.

    interface AgenticTokenCacheOptions {
        authScopes?: string[];
        exchangeTimeoutMs?: number;
    }
    Index
    authScopes?: string[]

    OAuth scopes for token exchange. Defaults to the A365 observability scope.

    exchangeTimeoutMs?: number

    Per-attempt timeout (ms) for the exchangeToken call. A timed-out attempt is treated as a retriable error. Set to 0 or a negative value to disable (wait indefinitely). Overridden by the A365_OBSERVABILITY_TOKEN_EXCHANGE_TIMEOUT_MS env var.

    30000