2021-04-29 21:17:54 +05:30
|
|
|
# Aggregated metrics that include EE only event names within `events:` attribute have to be defined at ee/config/metrics/aggregates/common.yml
|
2021-04-17 20:07:23 +05:30
|
|
|
# instead of this file.
|
2022-04-04 11:22:00 +05:30
|
|
|
# - name: unique name of aggregated metric
|
2021-01-29 00:20:46 +05:30
|
|
|
# operator: aggregation operator. Valid values are:
|
|
|
|
# - "OR": counts unique elements that were observed triggering any of following events
|
|
|
|
# - "AND": counts unique elements that were observed triggering all of following events
|
|
|
|
# events: list of events names to aggregate into metric. All events in this list must have the same 'redis_slot' and 'aggregation' attributes
|
|
|
|
# see from lib/gitlab/usage_data_counters/known_events/ for the list of valid events.
|
2021-03-11 19:13:27 +05:30
|
|
|
# source: defines which datasource will be used to locate events that should be included in aggregated metric. Valid values are:
|
|
|
|
# - database
|
|
|
|
# - redis
|
2021-04-17 20:07:23 +05:30
|
|
|
# time_frame: defines time frames for aggregated metrics:
|
|
|
|
# - 7d - last 7 days
|
|
|
|
# - 28d - last 28 days
|
|
|
|
# - all - all historical available data, this time frame is not available for redis source
|
2021-01-29 00:20:46 +05:30
|
|
|
# feature_flag: name of development feature flag that will be checked before metrics aggregation is performed.
|
|
|
|
# Corresponding feature flag should have `default_enabled` attribute set to `false`.
|
|
|
|
# This attribute is OPTIONAL and can be omitted, when `feature_flag` is missing no feature flag will be checked.
|
|
|
|
---
|
2021-03-08 18:12:59 +05:30
|
|
|
- name: compliance_features_track_unique_visits_union
|
|
|
|
operator: OR
|
2021-03-11 19:13:27 +05:30
|
|
|
source: redis
|
2021-04-17 20:07:23 +05:30
|
|
|
time_frame: [7d, 28d]
|
2021-04-29 21:17:54 +05:30
|
|
|
events:
|
|
|
|
- 'g_compliance_audit_events'
|
|
|
|
- 'g_compliance_dashboard'
|
|
|
|
- 'i_compliance_audit_events'
|
|
|
|
- 'a_compliance_audit_events_api'
|
|
|
|
- 'i_compliance_credential_inventory'
|
2021-02-22 17:27:13 +05:30
|
|
|
- name: incident_management_alerts_total_unique_counts
|
|
|
|
operator: OR
|
2021-03-11 19:13:27 +05:30
|
|
|
source: redis
|
2021-04-17 20:07:23 +05:30
|
|
|
time_frame: [7d, 28d]
|
2021-04-29 21:17:54 +05:30
|
|
|
events:
|
|
|
|
- 'incident_management_alert_status_changed'
|
|
|
|
- 'incident_management_alert_assigned'
|
|
|
|
- 'incident_management_alert_todo'
|
|
|
|
- 'incident_management_alert_create_incident'
|
2021-02-22 17:27:13 +05:30
|
|
|
- name: incident_management_incidents_total_unique_counts
|
|
|
|
operator: OR
|
2021-03-11 19:13:27 +05:30
|
|
|
source: redis
|
2021-04-17 20:07:23 +05:30
|
|
|
time_frame: [7d, 28d]
|
2021-04-29 21:17:54 +05:30
|
|
|
events:
|
|
|
|
- 'incident_management_incident_created'
|
|
|
|
- 'incident_management_incident_reopened'
|
|
|
|
- 'incident_management_incident_closed'
|
|
|
|
- 'incident_management_incident_assigned'
|
|
|
|
- 'incident_management_incident_todo'
|
|
|
|
- 'incident_management_incident_comment'
|
|
|
|
- 'incident_management_incident_zoom_meeting'
|
|
|
|
- 'incident_management_incident_published'
|
|
|
|
- 'incident_management_incident_relate'
|
|
|
|
- 'incident_management_incident_unrelate'
|
|
|
|
- 'incident_management_incident_change_confidential'
|
2022-05-07 20:08:51 +05:30
|
|
|
- name: xmau_plan
|
|
|
|
operator: OR
|
|
|
|
source: redis
|
|
|
|
time_frame: [7d, 28d]
|
|
|
|
events:
|
|
|
|
- users_creating_work_items
|
|
|
|
- users_updating_work_item_title
|
|
|
|
feature_flag: track_work_items_activity
|
|
|
|
- name: xmau_project_management
|
|
|
|
operator: OR
|
|
|
|
source: redis
|
|
|
|
time_frame: [7d, 28d]
|
|
|
|
events:
|
|
|
|
- users_creating_work_items
|
|
|
|
- users_updating_work_item_title
|
|
|
|
feature_flag: track_work_items_activity
|
|
|
|
- name: users_work_items
|
|
|
|
operator: OR
|
|
|
|
source: redis
|
|
|
|
time_frame: [7d, 28d]
|
|
|
|
events:
|
|
|
|
- users_creating_work_items
|
|
|
|
- users_updating_work_item_title
|
|
|
|
feature_flag: track_work_items_activity
|