mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
Should provide cut and paste example for most users. Advanced users should be able to correct URLs to something appropriate.
1.6 KiB
1.6 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| api | Status - HTTP API | api-status | The /status endpoints query the Nomad system status. |
Status HTTP API
The /status endpoints query the Nomad system status.
Read Leader
This endpoint returns the address of the current leader in the region.
| Method | Path | Produces |
|---|---|---|
GET |
/status/leader |
application/json |
The table below shows this endpoint's support for blocking queries and required ACLs.
| Blocking Queries | ACL Required |
|---|---|
NO |
none |
Sample Request
$ curl \
https://localhost:4646/v1/status/leader
Sample Response
"127.0.0.1:4647"
List Peers
This endpoint returns the set of raft peers in the region.
| Method | Path | Produces |
|---|---|---|
GET |
/status/peers |
application/json |
The table below shows this endpoint's support for blocking queries and required ACLs.
| Blocking Queries | ACL Required |
|---|---|
NO |
none |
Sample Request
$ curl \
https://localhost:4646/v1/status/peers
Sample Response
[
"127.0.0.1:4647"
]