1.0 KiB
1.0 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
docs | Status (HTTP) | docs-agent-http-status | The Status endpoints are used to get information about the status of the Consul cluster. |
Status HTTP Endpoint
The Status endpoints are used to get information about the status of the Consul cluster. These are generally very low level, and not really useful for clients.
The following endpoints are supported:
/v1/status/leader
: Returns the current Raft leader/v1/status/peers
: Returns the current Raft peer set
/v1/status/leader
This endpoint is used to get the Raft leader for the datacenter the agent is running in. It returns only an address like:
"10.1.10.12:8300"
/v1/status/peers
This endpoint is used to get the Raft peers for the datacenter the agent is running in. It returns a list of addresses like:
[
"10.1.10.12:8300",
"10.1.10.11:8300",
"10.1.10.10:8300"
]