summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2016-05-22 00:41:20 -0500
committerAchilleas Pipinellis <axilleas@axilleas.me>2016-05-22 00:41:20 -0500
commit2264bb136b78a07b3dde3aaacbae7ba3918775e0 (patch)
tree802552d87a6e1f790c5f1ce7a619422ce7dd75cd
parent1a98dcacc527f684bc68eb6c7d7f94371e329fee (diff)
downloadgitlab-ce-health_check_docs.tar.gz
Copyedit health check docshealth_check_docs
-rw-r--r--doc/monitoring/health_check.md23
1 files changed, 16 insertions, 7 deletions
diff --git a/doc/monitoring/health_check.md b/doc/monitoring/health_check.md
index 5157cf686a7..defbf37ac19 100644
--- a/doc/monitoring/health_check.md
+++ b/doc/monitoring/health_check.md
@@ -1,5 +1,6 @@
# Health Check
-_**Note:** This feature was [introduced][ce-3888] in GitLab 8.8_
+
+>**Note:** This feature was [introduced][ce-3888] in GitLab 8.8.
GitLab provides a health check endpoint for uptime monitoring on the `health_check` web
endpoint. The health check reports on the overall system status based on the status of
@@ -14,11 +15,13 @@ accepted token can be found on the `admin/heath_check` page of your GitLab insta
![access token](img/health_check_token.png)
-The access token can be passed as a url parameter:
+The access token can be passed as a URL parameter:
-`https://gitlab.example.com/health_check.json?token=ACCESS_TOKEN`
+```
+https://gitlab.example.com/health_check.json?token=ACCESS_TOKEN
+```
-or as a http header:
+or as an HTTP header:
```bash
curl -H "TOKEN: ACCESS_TOKEN" https://gitlab.example.com/health_check.json
@@ -39,16 +42,22 @@ You can also ask for the status of specific services:
- `https://gitlab.example.com/health_check/database.json?token=ACCESS_TOKEN`
- `https://gitlab.example.com/health_check/migrations.json?token=ACCESS_TOKEN`
-Example output:
+For example, the JSON output of the following health check:
+
```bash
curl -H "TOKEN: ACCESS_TOKEN" https://gitlab.example.com/health_check.json
+```
+
+would be like:
+
+```
{"healthy":true,"message":"success"}
```
## Status
-On failure the endpoint will return a `500` http status code. On success the endpoint
-will return a valid successful http status code, and a `success` message. Ideally your
+On failure, the endpoint will return a `500` HTTP status code. On success, the endpoint
+will return a valid successful HTTP status code, and a `success` message. Ideally your
uptime monitoring should look for the success message.
[ce-3888]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3888