debian-mirror-gitlab/doc/user/admin_area/monitoring/health_check.md

181 lines
4.5 KiB
Markdown
Raw Normal View History

2019-09-04 21:01:54 +05:30
---
type: concepts, howto
---
2016-11-03 12:29:30 +05:30
2019-12-04 20:38:33 +05:30
# Health Check **(CORE ONLY)**
2019-07-07 11:18:12 +05:30
2019-09-04 21:01:54 +05:30
> - Liveness and readiness probes were [introduced][ce-10416] in GitLab 9.1.
> - The `health_check` endpoint was [introduced][ce-3888] in GitLab 8.8 and was
> deprecated in GitLab 9.1.
> - [Access token](#access-token-deprecated) has been deprecated in GitLab 9.4
> in favor of [IP whitelist](#ip-whitelist).
2017-08-17 22:00:37 +05:30
GitLab provides liveness and readiness probes to indicate service health and
reachability to required services. These probes report on the status of the
database connection, Redis connection, and access to the filesystem. These
endpoints [can be provided to schedulers like Kubernetes][kubernetes] to hold
traffic until the system is ready or restart the container as needed.
2016-11-03 12:29:30 +05:30
2017-09-10 17:25:29 +05:30
## IP whitelist
2016-11-03 12:29:30 +05:30
2019-07-07 11:18:12 +05:30
To access monitoring resources, the requesting client IP needs to be included in a whitelist.
2019-09-04 21:01:54 +05:30
For details, see [how to add IPs to a whitelist for the monitoring endpoints](../../../administration/monitoring/ip_whitelist.md).
2016-11-03 12:29:30 +05:30
2019-12-04 20:38:33 +05:30
## Using the endpoints locally
2016-11-03 12:29:30 +05:30
2019-07-07 11:18:12 +05:30
With default whitelist settings, the probes can be accessed from localhost using the following URLs:
2017-09-10 17:25:29 +05:30
2019-12-04 20:38:33 +05:30
```text
GET http://localhost/-/health
```
```text
GET http://localhost/-/readiness
```
```text
GET http://localhost/-/liveness
```
## Health
2016-11-03 12:29:30 +05:30
2019-12-04 20:38:33 +05:30
Checks whether the application server is running. It does not verify the database or other services are running.
```text
GET /-/health
```
Example request:
```sh
curl 'https://gitlab.example.com/-/health'
```
Example response:
2018-11-18 11:00:15 +05:30
2019-09-04 21:01:54 +05:30
```text
2018-11-18 11:00:15 +05:30
GitLab OK
```
2019-12-04 20:38:33 +05:30
## Readiness
The readiness probe checks whether the Gitlab instance is ready to use. It checks the dependent services (Database, Redis, Gitaly etc.) and gives a status for each.
```text
GET /-/readiness
```
Example request:
2017-09-10 17:25:29 +05:30
2019-12-04 20:38:33 +05:30
```sh
curl 'https://gitlab.example.com/-/readiness'
```
Example response:
2016-11-03 12:29:30 +05:30
2019-07-07 11:18:12 +05:30
```json
2017-08-17 22:00:37 +05:30
{
2019-09-30 21:07:59 +05:30
"db_check":{
2019-12-04 20:38:33 +05:30
"status":"failed",
"message": "unexpected Db check result: 0"
2017-09-10 17:25:29 +05:30
},
2019-09-30 21:07:59 +05:30
"redis_check":{
"status":"ok"
2017-09-10 17:25:29 +05:30
},
2019-09-30 21:07:59 +05:30
"cache_check":{
"status":"ok"
2017-09-10 17:25:29 +05:30
},
2019-09-30 21:07:59 +05:30
"queues_check":{
"status":"ok"
2017-09-10 17:25:29 +05:30
},
2019-09-30 21:07:59 +05:30
"shared_state_check":{
"status":"ok"
},
"gitaly_check":{
"status":"ok",
"labels":{
"shard":"default"
}
}
2017-09-10 17:25:29 +05:30
}
2016-11-03 12:29:30 +05:30
```
2019-12-04 20:38:33 +05:30
## Liveness
The liveness probe checks whether the application server is alive. Unlike the [`health`](#health) check, this check hits the database.
```text
GET /-/liveness
```
Example request:
```sh
curl 'https://gitlab.example.com/-/liveness'
```
Example response:
On success, the endpoint will return a valid successful HTTP status code, and a response like below.
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
```json
2017-09-10 17:25:29 +05:30
{
2019-09-30 21:07:59 +05:30
"db_check":{
"status":"ok"
},
"redis_check":{
"status":"ok"
2017-09-10 17:25:29 +05:30
},
2019-09-30 21:07:59 +05:30
"cache_check":{
"status":"ok"
2017-09-10 17:25:29 +05:30
},
2019-09-30 21:07:59 +05:30
"queues_check":{
"status":"ok"
2017-09-10 17:25:29 +05:30
},
2019-09-30 21:07:59 +05:30
"shared_state_check":{
"status":"ok"
2017-09-10 17:25:29 +05:30
},
2019-09-30 21:07:59 +05:30
"gitaly_check":{
"status":"ok"
2017-09-10 17:25:29 +05:30
}
}
```
2017-08-17 22:00:37 +05:30
2019-12-04 20:38:33 +05:30
On failure, the endpoint will return a `500` HTTP status code.
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
## Access token (Deprecated)
2017-08-17 22:00:37 +05:30
2019-09-04 21:01:54 +05:30
> NOTE: **Note:**
> Access token has been deprecated in GitLab 9.4 in favor of [IP whitelist](#ip-whitelist).
2016-11-03 12:29:30 +05:30
2017-09-10 17:25:29 +05:30
An access token needs to be provided while accessing the probe endpoints. The current
accepted token can be found under the **Admin area ➔ Monitoring ➔ Health check**
(`admin/health_check`) page of your GitLab instance.
2016-11-03 12:29:30 +05:30
2017-09-10 17:25:29 +05:30
![access token](img/health_check_token.png)
2016-11-03 12:29:30 +05:30
2017-09-10 17:25:29 +05:30
The access token can be passed as a URL parameter:
2016-11-03 12:29:30 +05:30
2019-09-04 21:01:54 +05:30
```text
2017-09-10 17:25:29 +05:30
https://gitlab.example.com/-/readiness?token=ACCESS_TOKEN
2016-11-03 12:29:30 +05:30
```
2019-09-04 21:01:54 +05:30
<!-- ## Troubleshooting
Include any troubleshooting steps that you can foresee. If you know beforehand what issues
one might have when setting this up, or when something is changed, or on upgrading, it's
important to describe those, too. Think of things that may go wrong and include them here.
This is important to minimize requests for support, and to avoid doc comments with
questions that you know someone might ask.
Each scenario can be a third-level heading, e.g. `### Getting error message X`.
If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. -->
2019-12-04 20:38:33 +05:30
[ce-10416]: https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/10416
[ce-3888]: https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/3888
2016-11-03 12:29:30 +05:30
[pingdom]: https://www.pingdom.com
[nagios-health]: https://nagios-plugins.org/doc/man/check_http.html
[newrelic-health]: https://docs.newrelic.com/docs/alerts/alert-policies/downtime-alerts/availability-monitoring
2017-08-17 22:00:37 +05:30
[kubernetes]: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/