diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2018-06-22 13:20:25 +0000 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2018-06-22 13:20:25 +0000 |
commit | f855cbf6477f4e6febf57472d20206db92fe86d8 (patch) | |
tree | edeb869ad35b5f16d2ba1e800b1673c7f6b8d698 /doc | |
parent | 4b8ac87b68974ab48e9cd1695c0a76d4953791b2 (diff) | |
parent | 78a9991543cdcc0cbd7ecfaab979c8e2c98b7a75 (diff) | |
download | gitlab-ce-f855cbf6477f4e6febf57472d20206db92fe86d8.tar.gz |
Merge branch 'bjk/48176_ruby_gc' into 'master'
Fix ruby sampler metrics
See merge request gitlab-org/gitlab-ce!20039
Diffstat (limited to 'doc')
-rw-r--r-- | doc/administration/monitoring/prometheus/gitlab_metrics.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/administration/monitoring/prometheus/gitlab_metrics.md b/doc/administration/monitoring/prometheus/gitlab_metrics.md index 411a0fae93f..cea6764df41 100644 --- a/doc/administration/monitoring/prometheus/gitlab_metrics.md +++ b/doc/administration/monitoring/prometheus/gitlab_metrics.md @@ -49,6 +49,20 @@ The following metrics are available: | filesystem_circuitbreaker | Gauge | 9.5 | Whether or not the circuit for a certain shard is broken or not | | circuitbreaker_storage_check_duration_seconds | Histogram | 10.3 | Time a single storage probe took | +### Ruby metrics + +Some basic Ruby runtime metrics are available: + +| Metric | Type | Since | Description | +|:-------------------------------------- |:--------- |:----- |:----------- | +| ruby_gc_duration_seconds_total | Counter | 11.1 | Time spent by Ruby in GC | +| ruby_gc_stat_... | Gauge | 11.1 | Various metrics from [GC.stat] | +| ruby_file_descriptors | Gauge | 11.1 | File descriptors per process | +| ruby_memory_bytes | Gauge | 11.1 | Memory usage by process | +| ruby_sampler_duration_seconds_total | Counter | 11.1 | Time spent collecting stats | + +[GC.stat]: https://ruby-doc.org/core-2.3.0/GC.html#method-c-stat + ## Metrics shared directory GitLab's Prometheus client requires a directory to store metrics data shared between multi-process services. |