Solana · Arazzo Workflow
Solana Run a Cluster Health and Readiness Check
Version 1.0.0
Probe an RPC node's health, version, current slot, epoch position, and block height.
Provider
Workflows
cluster-health-check
Confirm an RPC node is healthy, current, and on a known version.
Runs the standard sequence of node-state reads used to gate traffic to an RPC endpoint.
1
health
getHealth
Ask the node whether it is caught up with the cluster. A healthy node returns the string "ok"; a lagging node returns an error carrying how many slots behind it is.
2
version
getVersion
Record the solana-core version and feature set the node runs, so clients can detect a node lagging behind a cluster-wide upgrade.
3
currentSlot
getSlot
Read the slot the node has reached, the primary freshness signal for an RPC endpoint.
4
epochInfo
getEpochInfo
Place the current slot inside its epoch, giving the epoch number, the position within it, and the running transaction count.
5
blockHeight
getBlockHeight
Read the current block height, which advances only with confirmed blocks and is the value transaction expiry is measured against.