gitlab-org--gitlab-foss/doc/development/prometheus_metrics.md

47 lines
1.7 KiB
Markdown
Raw Normal View History

2018-09-04 13:01:34 +00:00
# Working with Prometheus Metrics
## Adding to the library
We strive to support the 2-4 most important metrics for each common system service that supports Prometheus. If you are looking for support for a particular exporter which has not yet been added to the library, additions can be made [to the `common_metrics.yml`](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/config/prometheus/common_metrics.yml) file.
### Query identifier
2018-09-05 20:01:17 +00:00
The requirement for adding a new metric is to make each query to have an unique identifier which is used to update the metric later when changed:
2018-09-04 13:01:34 +00:00
```yaml
- group: Response metrics (NGINX Ingress)
metrics:
- title: "Throughput"
y_label: "Requests / Sec"
queries:
- id: response_metrics_nginx_ingress_throughput_status_code
query_range: 'sum(rate(nginx_upstream_responses_total{upstream=~"%{kube_namespace}-%{ci_environment_slug}-.*"}[2m])) by (status_code)'
unit: req / sec
label: Status Code
```
### Update existing metrics
After you add or change existing _common_ metric you have to create a new database migration that will query and update all existing metrics.
2018-09-05 20:01:17 +00:00
NOTE: **Note:**
If a query metric (which is identified by `id:`) is removed it will not be removed from database by default.
You might want to add additional database migration that makes a decision what to do with removed one.
For example: you might be interested in migrating all dependent data to a different metric.
2018-09-04 13:01:34 +00:00
```ruby
class ImportCommonMetrics < ActiveRecord::Migration[4.2]
2018-09-04 20:51:02 +00:00
include Gitlab::Database::MigrationHelpers
2018-09-04 13:01:34 +00:00
DOWNTIME = false
def up
::Gitlab::DatabaseImporters::CommonMetrics::Importer.new.execute
2018-09-04 13:01:34 +00:00
end
def down
# no-op
end
end
```