2022-01-04 13:14:20 -05:00
---
stage: Enablement
group: Distribution
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
---
# Sidekiq Health Check **(FREE SELF)**
GitLab provides liveness and readiness probes to indicate service health and
2022-01-13 16:14:07 -05:00
reachability to the Sidekiq cluster. These endpoints
2022-01-04 13:14:20 -05:00
[can be provided to schedulers like Kubernetes ](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ )
to hold traffic until the system is ready or restart the container as needed.
The health check server can be set up when [configuring Sidekiq ](sidekiq.md ).
## Readiness
The readiness probe checks whether the Sidekiq workers are ready to process jobs.
```plaintext
GET /readiness
```
2022-03-22 23:07:30 -04:00
If you set Sidekiq's address as `localhost` and port as `8092` ,
2022-01-04 13:14:20 -05:00
here's an example request:
```shell
curl "http://localhost:8092/readiness"
```
On success, the endpoint returns a `200` HTTP status code, and a response like the following:
```json
{
"status": "ok"
}
```
## Liveness
Checks whether the Sidekiq cluster is running.
```plaintext
GET /liveness
```
2022-03-22 23:07:30 -04:00
If you set Sidekiq's address as `localhost` and port as `8092` ,
2022-01-04 13:14:20 -05:00
here's an example request:
```shell
curl "http://localhost:8092/liveness"
```
On success, the endpoint returns a `200` HTTP status code, and a response like the following:
```json
{
"status": "ok"
}
```