# <a id="bitdrift.public.unary.health.v1.HealthService"></a>HealthService

**Source definition:** [`src/bitdrift/public/unary/health/v1/health.proto#L15-L20`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/unary/health/v1/health.proto#L15-L20>)

The HealthService provides methods for checking the health and status of the system, including
 the number of connected SDK clients and the current queue delays for processing ingested data.

### <a id="GetSystemStatus"></a>GetSystemStatus

Get the overall system status, including the number of SDK clients connected and the current
 queue delay for processing ingested data.

<section class="proto-service-table" markdown>

| Request | Response |
| - | - |
| <span class="proto-type proto-type-message">[<i class="proto-type-part">bitdrift</i><i class="proto-type-dot">.</i><i class="proto-type-part">public</i><i class="proto-type-dot">.</i><i class="proto-type-part">unary</i><i class="proto-type-dot">.</i><i class="proto-type-part">health</i><i class="proto-type-dot">.</i><i class="proto-type-part">v1</i><i class="proto-type-dot">.</i><i class="proto-type-part">GetSystemStatusRequest</i>](bitdrift_public_unary_health_v1_GetSystemStatusRequest.md "bitdrift.public.unary.health.v1.GetSystemStatusRequest")</span> | <span class="proto-type proto-type-message">[<i class="proto-type-part">bitdrift</i><i class="proto-type-dot">.</i><i class="proto-type-part">public</i><i class="proto-type-dot">.</i><i class="proto-type-part">unary</i><i class="proto-type-dot">.</i><i class="proto-type-part">health</i><i class="proto-type-dot">.</i><i class="proto-type-part">v1</i><i class="proto-type-dot">.</i><i class="proto-type-part">GetSystemStatusResponse</i>](bitdrift_public_unary_health_v1_GetSystemStatusResponse.md "bitdrift.public.unary.health.v1.GetSystemStatusResponse")</span> |

</section>

<p class="h4">Example Request</p>
**URL:** `https://api-public.bitdrift.io/bitdrift.public.unary.health.v1.HealthService/GetSystemStatus`

See [calling the API](../api-guide/calling-the-api.md) for authentication and request details.

```json
{}
```

<p class="h4">Example Response</p>
```json
{
  "connected_clients": 123,
  "issues_ingestion_delay": "5s",
  "logs_ingestion_delay": "5s",
  "metrics_ingestion_delay": "5s"
}
```

