Skip to content

Update Operational metrics data category

Luis Mejia requested to merge 327023-update-operational-data-category into master

What does this MR do?

This MR updates 115 metrics, assigning data_category: Operational

The changes were made with this script

#!/bin/bash

while IFS= read -r line; do
  echo "$line"
  egrep -r "key_path\: ${line}$" ee/config/metrics config/metrics | awk 'BEGIN{FS=":"}{print $1}' |xargs  sed -i '' -e 's/data_category\: Optional/data_category\: Operational/g' 

done < doc/development/usage_ping/operationals.txt

according to the Metrics list in https://docs.google.com/spreadsheets/d/1o2-H35SkJbYo9QGxSxgi9K94zKj028b_WQWfHCgTgsI/edit#gid=480783802 filtered by Data Type Categorization: Operational

Screenshots (strongly suggested)

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

Does this MR contain changes to processing or storing of credentials or tokens, authorization and authentication methods or other items described in the security review guidelines? If not, then delete this Security section.

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team

Related to #327023

Merge request reports