diff options
author | Ben Kochie <superq@gmail.com> | 2017-07-12 15:00:17 +0200 |
---|---|---|
committer | Ben Kochie <superq@gmail.com> | 2017-07-12 15:00:17 +0200 |
commit | 93be7b5a1c1ba07f0c18e19b190a7a3458fa7b5d (patch) | |
tree | 4bccba83ec30f295f4c3c794f053ef4c5835223c /doc/administration | |
parent | 86cbef4df42efae51732e01070dfad456dc5c1b5 (diff) | |
download | gitlab-ce-93be7b5a1c1ba07f0c18e19b190a7a3458fa7b5d.tar.gz |
Update metrics docs.
Diffstat (limited to 'doc/administration')
-rw-r--r-- | doc/administration/monitoring/prometheus/gitlab_metrics.md | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/doc/administration/monitoring/prometheus/gitlab_metrics.md b/doc/administration/monitoring/prometheus/gitlab_metrics.md index 56aa191941b..0fd30fb5d50 100644 --- a/doc/administration/monitoring/prometheus/gitlab_metrics.md +++ b/doc/administration/monitoring/prometheus/gitlab_metrics.md @@ -23,21 +23,24 @@ Currently the embedded Prometheus server is not automatically configured to coll In this experimental phase, only a few metrics are available: -| Metric | Type | Description | -| ------ | ---- | ----------- | -| db_ping_timeout | Gauge | Whether or not the last database ping timed out | -| db_ping_success | Gauge | Whether or not the last database ping succeeded | -| db_ping_latency_seconds | Gauge | Round trip time of the database ping | -| redis_ping_timeout | Gauge | Whether or not the last redis ping timed out | -| redis_ping_success | Gauge | Whether or not the last redis ping succeeded | -| redis_ping_latency_seconds | Gauge | Round trip time of the redis ping | -| filesystem_access_latency_seconds | gauge | Latency in accessing a specific filesystem | -| filesystem_accessible | gauge | Whether or not a specific filesystem is accessible | -| filesystem_write_latency_seconds | gauge | Write latency of a specific filesystem | -| filesystem_writable | gauge | Whether or not the filesystem is writable | -| filesystem_read_latency_seconds | gauge | Read latency of a specific filesystem | -| filesystem_readable | gauge | Whether or not the filesystem is readable | -| user_sessions_logins | Counter | Counter of how many users have logged in | +| Metric | Type | Description | +| --------------------------------- | --------- | ----------- | +| db_ping_timeout | Gauge | Whether or not the last database ping timed out | +| db_ping_success | Gauge | Whether or not the last database ping succeeded | +| db_ping_latency_seconds | Gauge | Round trip time of the database ping | +| filesystem_access_latency_seconds | Gauge | Latency in accessing a specific filesystem | +| filesystem_accessible | Gauge | Whether or not a specific filesystem is accessible | +| filesystem_write_latency_seconds | Gauge | Write latency of a specific filesystem | +| filesystem_writable | Gauge | Whether or not the filesystem is writable | +| filesystem_read_latency_seconds | Gauge | Read latency of a specific filesystem | +| filesystem_readable | Gauge | Whether or not the filesystem is readable | +| http_requests_total | Counter | Rack request count | +| http_request_duration_seconds | Histogram | HTTP response time from rack middleware | +| rack_uncaught_errors_total | Counter | Rack connections handling uncaught errors count | +| redis_ping_timeout | Gauge | Whether or not the last redis ping timed out | +| redis_ping_success | Gauge | Whether or not the last redis ping succeeded | +| redis_ping_latency_seconds | Gauge | Round trip time of the redis ping | +| user_sessions_logins | Counter | Counter of how many users have logged in | [← Back to the main Prometheus page](index.md) |