> For the complete documentation index, see [llms.txt](https://docs.vaultid.com.br/workspace/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vaultid.com.br/workspace/ceas/api/monitor-and-healthcheck.md).

# Monitor & HealthCheck

### Monitor

<mark style="color:blue;">`GET`</mark> `https://ceas.endpoint/dashboard`

#### Headers

| Name         | Type   | Description      |
| ------------ | ------ | ---------------- |
| Content-Type | string | application/json |

{% tabs %}
{% tab title="200 " %}

```
<html>
...
Charts
</html>
```

{% endtab %}
{% endtabs %}

### Health Check

<mark style="color:blue;">`GET`</mark> `https://ceas.endpoint/health-check`

#### Headers

| Name         | Type   | Description      |
| ------------ | ------ | ---------------- |
| Content-Type | string | application/json |

{% tabs %}
{% tab title="200 " %}

```
{
    "status": "OK",
    "messages": [
        "Everything is OK"
    ]
}
```

{% endtab %}
{% endtabs %}

Estrutura da resposta:

| .        | .                                                           |
| -------- | ----------------------------------------------------------- |
| status   | <p>Retorna da solução</p><ul><li>OK</li><li>ERROR</li></ul> |
| messages | Lista de mensagens                                          |
