Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2017-07-14 21:05:18 +0300
committerDouwe Maan <douwe@gitlab.com>2017-07-14 21:05:18 +0300
commitbe08202b4b5a17686b300e0fbd2bffccc702a3d1 (patch)
tree886d3cb1c47f9d355c94ae9fcba8670f9639f99d /doc
parent0f393724e7de8d764577b6622ccf43964539cb2b (diff)
parent2d0741e562dfcaca777b2d97f0cf11b8ac973f0a (diff)
Merge branch 'bjk/metric_names' into 'master'
Update metric names to match Prometheus guidelines. Closes #35031 See merge request !12812
Diffstat (limited to 'doc')
-rw-r--r--doc/administration/monitoring/prometheus/gitlab_metrics.md33
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 07c05b5a6fb..edb2dff3e48 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 | 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 | Gauge | Round trip time of the redis ping |
-| filesystem_access_latency | gauge | Latency in accessing a specific filesystem |
-| filesystem_accessible | gauge | Whether or not a specific filesystem is accessible |
-| filesystem_write_latency | gauge | Write latency of a specific filesystem |
-| filesystem_writable | gauge | Whether or not the filesystem is writable |
-| filesystem_read_latency | 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_session_logins_total | Counter | Counter of how many users have logged in |
[← Back to the main Prometheus page](index.md)