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

    Type Alias MetadataResponse

    Metadata response payload.

    type MetadataResponse = {
        brokers: readonly MetadataBroker[];
        clusterAuthorisedOperations: number;
        clusterId: string | null;
        controllerId: number;
        taggedFields: readonly TaggedField[];
        throttleTimeMs: number;
        topics: readonly MetadataTopic[];
    }
    Index

    Properties

    brokers: readonly MetadataBroker[]

    Broker information.

    clusterAuthorisedOperations: number

    Cluster-level authorised operations bitmask (v8–v10).

    clusterId: string | null

    Cluster ID (v2+). Null if not available.

    controllerId: number

    Controller broker ID (v1+). -1 if unknown.

    taggedFields: readonly TaggedField[]

    Tagged fields (v9+).

    throttleTimeMs: number

    Time the request was throttled in milliseconds (v3+).

    topics: readonly MetadataTopic[]

    Topic metadata.