@qualithm/kafka-client - v0.1.6
    Preparing search index...

    Type Alias DescribeLogDirsResult

    Per-log-directory result.

    type DescribeLogDirsResult = {
        errorCode: number;
        logDir: string;
        taggedFields: readonly TaggedField[];
        topics: readonly DescribeLogDirsTopicResponse[];
        totalBytes: bigint;
        usableBytes: bigint;
    }
    Index

    Properties

    errorCode: number

    Error code for this log dir (0 = success).

    logDir: string

    The absolute log directory path.

    taggedFields: readonly TaggedField[]

    Tagged fields (v2+).

    topics: readonly DescribeLogDirsTopicResponse[]

    Per-topic results within this log dir.

    totalBytes: bigint

    Total bytes of the volume (v3+). -1 if unknown.

    usableBytes: bigint

    Usable bytes of the volume (v3+). -1 if unknown.