ic-reactor
    Preparing search index...

    Represents the useful information about a subnet

    the principal id of the canister's subnet

    the keys of the individual nodes in the subnet

    type SubnetStatus = {
        subnetId: string;
        nodeKeys: Map<string, utils.agent.DerEncodedPublicKey>;
        metrics?: {
            num_canisters: bigint;
            canister_state_bytes: bigint;
            consumed_cycles_total: { current: bigint; deleted: bigint };
            update_transactions_total: bigint;
        };
    }
    Index

    Properties

    subnetId: string
    nodeKeys: Map<string, utils.agent.DerEncodedPublicKey>
    metrics?: {
        num_canisters: bigint;
        canister_state_bytes: bigint;
        consumed_cycles_total: { current: bigint; deleted: bigint };
        update_transactions_total: bigint;
    }