Argo CD API Client
    Preparing search index...

    Interface ArgoCdApplicationLogsParams

    Query parameters for fetching application logs.

    interface ArgoCdApplicationLogsParams {
        appNamespace?: string;
        container?: string;
        filter?: string;
        follow?: boolean;
        namespace?: string;
        podName?: string;
        sinceSeconds?: number;
        tailLines?: number;
        [key: string]: QueryValue | undefined;
    }

    Hierarchy (View Summary)

    Indexable

    Index

    Properties

    appNamespace?: string

    Application namespace for multi-namespace installs.

    container?: string

    Container name within the pod.

    filter?: string

    Filter log lines matching this string.

    follow?: boolean

    Whether to follow the log stream (set false to retrieve buffered logs).

    namespace?: string

    Namespace of the pod.

    podName?: string

    Pod name to fetch logs from.

    sinceSeconds?: number

    Return logs since this Unix timestamp.

    tailLines?: number

    Number of lines to return from the end of the log.