2015-04-23 18:58:10 +00:00
|
|
|
---
|
|
|
|
layout: "http"
|
|
|
|
page_title: "HTTP API: /sys/health"
|
|
|
|
sidebar_current: "docs-http-debug-health"
|
|
|
|
description: |-
|
|
|
|
The '/sys/health' endpoint is used to check the health status of Vault.
|
|
|
|
---
|
|
|
|
|
|
|
|
# /sys/health
|
|
|
|
|
|
|
|
<dl>
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
|
|
|
Returns the health status of Vault. This matches the semantics of a Consul HTTP health
|
|
|
|
check and provides a simple way to monitor the health of a Vault instance.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>GET</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>
|
2015-07-03 00:49:35 +00:00
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<span class="param">standbyok</span>
|
|
|
|
<span class="param-flags">optional</span>
|
|
|
|
A query parameter provided to indicate that being a standby should
|
|
|
|
still return a 200 status code instead of the standard 429 status code.
|
|
|
|
</li>
|
|
|
|
</ul>
|
2015-04-23 18:58:10 +00:00
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```javascript
|
|
|
|
{
|
|
|
|
"initialized": true,
|
|
|
|
"sealed": false,
|
|
|
|
"standby": false
|
|
|
|
}
|
|
|
|
```
|
2015-04-23 18:58:10 +00:00
|
|
|
|
|
|
|
Status Codes:
|
|
|
|
|
|
|
|
* `200` if initialized, unsealed and active.
|
|
|
|
* `429` if unsealed and standby.
|
|
|
|
* `500` if not initialized or sealed.
|
|
|
|
</dd>
|
|
|
|
</dl>
|