Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
b5552bc4
Commit
b5552bc4
authored
May 18, 2016
by
DJ Mountney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add health check feature documentation
parent
da8ac163
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
58 additions
and
0 deletions
+58
-0
doc/README.md
doc/README.md
+1
-0
doc/monitoring/health_check.md
doc/monitoring/health_check.md
+57
-0
doc/monitoring/img/health_check_token.png
doc/monitoring/img/health_check_token.png
+0
-0
No files found.
doc/README.md
View file @
b5552bc4
...
...
@@ -41,6 +41,7 @@
-
[
Git LFS configuration
](
workflow/lfs/lfs_administration.md
)
-
[
Housekeeping
](
administration/housekeeping.md
)
Keep your Git repository tidy and fast.
-
[
GitLab Performance Monitoring
](
monitoring/performance/introduction.md
)
Configure GitLab and InfluxDB for measuring performance metrics
-
[
Monitoring uptime
](
monitoring/health_check.md
)
Check the server status using the health check endpoint
-
[
Sidekiq Troubleshooting
](
administration/troubleshooting/sidekiq.md
)
Debug when Sidekiq appears hung and is not processing jobs
-
[
High Availability
](
administration/high_availability/README.md
)
Configure multiple servers for scaling or high availability
...
...
doc/monitoring/health_check.md
0 → 100644
View file @
b5552bc4
# Health Check
_**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
the database connection, the state of the database migrations, and the ability to write
and access the cache. This endpoint can be provided to uptime monitoring services like
[
Pingdom
][
pindom
]
,
[
Nagios
][
nagios-health
]
, and
[
NewRelic
][
newrelic-health
]
.
## Access Token
A access token needs to be provided while accessing the health check endpoint. The current
accepted token can be found on the
`admin/heath_check`
page of your GitLab instance.
![
access token
](
img/health_check_token.png
)
The access token can be passed as a url parameter:
`https://gitlab.example.com/health_check.json?token=ACCESS_TOKEN`
or as a http header:
```
bash
curl
-H
"TOKEN: ACCESS_TOKEN"
https://gitlab.example.com/health_check.json
```
## Using the Endpoint
Once you have the access token, health information can be retrieved as plain text, JSON,
or XML using the
`health_check`
endpoint:
-
`https://gitlab.example.com/health_check?token=ACCESS_TOKEN`
-
`https://gitlab.example.com/health_check.json?token=ACCESS_TOKEN`
-
`https://gitlab.example.com/health_check.xml?token=ACCESS_TOKEN`
You can also ask for the status of specific services:
-
`https://gitlab.example.com/health_check/cache.json?token=ACCESS_TOKEN`
-
`https://gitlab.example.com/health_check/database.json?token=ACCESS_TOKEN`
-
`https://gitlab.example.com/health_check/migrations.json?token=ACCESS_TOKEN`
Example output:
```
bash
curl
-H
"TOKEN: ACCESS_TOKEN"
https://gitlab.example.com/health_check.json
{
"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
uptime monitoring should look for the success message.
[
ce-3888
]:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3888
[
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
doc/monitoring/img/health_check_token.png
0 → 100644
View file @
b5552bc4
10.6 KB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment