@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias BrokerInfo

    Provides information on a broker node.

    type BrokerInfo = {
        host: string;
        nodeId: number;
        partitions: Partition[];
        port: number;
        version: string;
    }
    Index

    Properties

    host: string

    The hostname for reaching the broker.

    nodeId: number

    The unique (within a cluster) node ID for the broker.

    partitions: Partition[]

    A list of partitions managed or replicated on this broker.

    port: number

    The port for reaching the broker.

    version: string

    The broker version.