diff options
author | Ryan Cobb <rcobb@gitlab.com> | 2019-07-04 10:24:19 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2019-07-04 10:24:19 +0000 |
commit | 04962880ad5325e4386528cfebb1d8a599de6494 (patch) | |
tree | 4ac1a5705856fa0fa0108fb1c794d28a8d1ae428 /doc | |
parent | 5608c8617cddf5b86e6caebd759beb69540e671c (diff) | |
download | gitlab-ce-04962880ad5325e4386528cfebb1d8a599de6494.tar.gz |
Fix process start time
Previously we were recording process start time as seconds from boot.
This makes it so we record as epoch time.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/administration/monitoring/prometheus/gitlab_metrics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/administration/monitoring/prometheus/gitlab_metrics.md b/doc/administration/monitoring/prometheus/gitlab_metrics.md index 2d9e3f7f18b..f09548aa024 100644 --- a/doc/administration/monitoring/prometheus/gitlab_metrics.md +++ b/doc/administration/monitoring/prometheus/gitlab_metrics.md @@ -104,7 +104,7 @@ Some basic Ruby runtime metrics are available: | ruby_process_cpu_seconds_total | Gauge | 12.0 | Total amount of CPU time per process | | ruby_process_max_fds | Gauge | 12.0 | Maximum number of open file descriptors per process | | ruby_process_resident_memory_bytes | Gauge | 12.0 | Memory usage by process, measured in bytes | -| ruby_process_start_time_seconds | Gauge | 12.0 | The elapsed time between system boot and the process started, measured in seconds | +| ruby_process_start_time_seconds | Gauge | 12.0 | UNIX timestamp of process start time | [GC.stat]: https://ruby-doc.org/core-2.3.0/GC.html#method-c-stat |