2017-04-04 16:33:22 +00:00
|
|
|
---
|
|
|
|
layout: api
|
|
|
|
page_title: Status - HTTP API
|
2020-04-13 18:40:26 +00:00
|
|
|
sidebar_title: Status
|
2017-04-04 16:33:22 +00:00
|
|
|
description: |-
|
|
|
|
The /status endpoints return information about the status of the Consul
|
|
|
|
cluster. This information is generally very low level and not often useful for
|
|
|
|
clients.
|
|
|
|
---
|
|
|
|
|
|
|
|
# Status HTTP API
|
|
|
|
|
|
|
|
The `/status` endpoints return information about the status of the Consul
|
|
|
|
cluster. This information is generally very low level and not often useful for
|
|
|
|
clients.
|
|
|
|
|
|
|
|
## Get Raft Leader
|
|
|
|
|
|
|
|
This endpoint returns the Raft leader for the datacenter in which the agent is
|
|
|
|
running.
|
|
|
|
|
2020-04-06 20:27:35 +00:00
|
|
|
| Method | Path | Produces |
|
|
|
|
| :----- | :--------------- | ------------------ |
|
|
|
|
| `GET` | `/status/leader` | `application/json` |
|
2017-04-04 16:33:22 +00:00
|
|
|
|
|
|
|
The table below shows this endpoint's support for
|
2020-04-09 23:46:54 +00:00
|
|
|
[blocking queries](/api/features/blocking),
|
|
|
|
[consistency modes](/api/features/consistency),
|
|
|
|
[agent caching](/api/features/caching), and
|
2020-04-09 23:20:00 +00:00
|
|
|
[required ACLs](/api#authentication).
|
2017-04-04 16:33:22 +00:00
|
|
|
|
2018-09-06 10:34:28 +00:00
|
|
|
| Blocking Queries | Consistency Modes | Agent Caching | ACL Required |
|
|
|
|
| ---------------- | ----------------- | ------------- | ------------ |
|
|
|
|
| `NO` | `none` | `none` | `none` |
|
2017-04-04 16:33:22 +00:00
|
|
|
|
2019-07-25 18:26:22 +00:00
|
|
|
### Parameters
|
|
|
|
|
|
|
|
- `dc` `(string: "")` - Specifies the datacenter to query. This will default to
|
|
|
|
the datacenter of the agent being queried. This is specified as part of the
|
|
|
|
URL as a query parameter.
|
|
|
|
|
2017-04-04 16:33:22 +00:00
|
|
|
### Sample Request
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2018-08-28 16:07:15 +00:00
|
|
|
$ curl http://127.0.0.1:8500/v1/status/leader
|
2017-04-04 16:33:22 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
```json
|
|
|
|
"10.1.10.12:8300"
|
|
|
|
```
|
|
|
|
|
|
|
|
## List Raft Peers
|
|
|
|
|
|
|
|
This endpoint retrieves the Raft peers for the datacenter in which the the agent
|
|
|
|
is running. This list of peers is strongly consistent and can be useful in
|
|
|
|
determining when a given server has successfully joined the cluster.
|
|
|
|
|
2020-04-06 20:27:35 +00:00
|
|
|
| Method | Path | Produces |
|
|
|
|
| :----- | :-------------- | ------------------ |
|
|
|
|
| `GET` | `/status/peers` | `application/json` |
|
2017-04-04 16:33:22 +00:00
|
|
|
|
|
|
|
The table below shows this endpoint's support for
|
2020-04-09 23:46:54 +00:00
|
|
|
[blocking queries](/api/features/blocking),
|
|
|
|
[consistency modes](/api/features/consistency),
|
|
|
|
[agent caching](/api/features/caching), and
|
2020-04-09 23:20:00 +00:00
|
|
|
[required ACLs](/api#authentication).
|
2017-04-04 16:33:22 +00:00
|
|
|
|
2018-09-06 10:34:28 +00:00
|
|
|
| Blocking Queries | Consistency Modes | Agent Caching | ACL Required |
|
|
|
|
| ---------------- | ----------------- | ------------- | ------------ |
|
|
|
|
| `NO` | `none` | `none` | `none` |
|
2017-04-04 16:33:22 +00:00
|
|
|
|
2019-07-25 18:26:22 +00:00
|
|
|
### Parameters
|
|
|
|
|
|
|
|
- `dc` `(string: "")` - Specifies the datacenter to query. This will default to
|
|
|
|
the datacenter of the agent being queried. This is specified as part of the
|
|
|
|
URL as a query parameter.
|
|
|
|
|
2017-04-04 16:33:22 +00:00
|
|
|
### Sample Request
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2018-08-28 16:07:15 +00:00
|
|
|
$ curl http://127.0.0.1:8500/v1/status/peers
|
2017-04-04 16:33:22 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
```json
|
2020-04-06 20:27:35 +00:00
|
|
|
["10.1.10.12:8300", "10.1.10.11:8300", "10.1.10.10:8300"]
|
2017-04-04 16:33:22 +00:00
|
|
|
```
|