Commit 5a73e735 authored by Jan Provaznik's avatar Jan Provaznik

Merge branch 'update-feature-categories-2020-11-19' into 'master'

Update feature categories for 2020-11-19

See merge request gitlab-org/gitlab!48133
parents c0f7c071 f1735c54
...@@ -5,7 +5,7 @@ class Admin::CohortsController < Admin::ApplicationController ...@@ -5,7 +5,7 @@ class Admin::CohortsController < Admin::ApplicationController
track_unique_visits :index, target_id: 'i_analytics_cohorts' track_unique_visits :index, target_id: 'i_analytics_cohorts'
feature_category :instance_statistics feature_category :devops_reports
def index def index
if Gitlab::CurrentSettings.usage_ping_enabled if Gitlab::CurrentSettings.usage_ping_enabled
......
# frozen_string_literal: true # frozen_string_literal: true
class Admin::InstanceReviewController < Admin::ApplicationController class Admin::InstanceReviewController < Admin::ApplicationController
feature_category :instance_statistics feature_category :devops_reports
def index def index
redirect_to("#{::Gitlab::SubscriptionPortal::SUBSCRIPTIONS_URL}/instance_review?#{instance_review_params}") redirect_to("#{::Gitlab::SubscriptionPortal::SUBSCRIPTIONS_URL}/instance_review?#{instance_review_params}")
......
...@@ -7,7 +7,7 @@ class Admin::InstanceStatisticsController < Admin::ApplicationController ...@@ -7,7 +7,7 @@ class Admin::InstanceStatisticsController < Admin::ApplicationController
track_unique_visits :index, target_id: 'i_analytics_instance_statistics' track_unique_visits :index, target_id: 'i_analytics_instance_statistics'
feature_category :instance_statistics feature_category :devops_reports
def index def index
end end
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
class Projects::AlertManagementController < Projects::ApplicationController class Projects::AlertManagementController < Projects::ApplicationController
before_action :authorize_read_alert_management_alert! before_action :authorize_read_alert_management_alert!
feature_category :alert_management feature_category :incident_management
def index def index
end end
......
...@@ -10,7 +10,7 @@ module Projects ...@@ -10,7 +10,7 @@ module Projects
prepend_before_action :repository, :project_without_auth prepend_before_action :repository, :project_without_auth
feature_category :alert_management feature_category :incident_management
def create def create
token = extract_alert_manager_token(request) token = extract_alert_manager_token(request)
......
...@@ -16,7 +16,7 @@ module Projects ...@@ -16,7 +16,7 @@ module Projects
before_action :authorize_read_prometheus_alerts!, except: [:notify] before_action :authorize_read_prometheus_alerts!, except: [:notify]
before_action :alert, only: [:update, :show, :destroy, :metrics_dashboard] before_action :alert, only: [:update, :show, :destroy, :metrics_dashboard]
feature_category :alert_management feature_category :incident_management
def index def index
render json: serialize_as_json(alerts) render json: serialize_as_json(alerts)
......
...@@ -124,7 +124,7 @@ ...@@ -124,7 +124,7 @@
:idempotent: :idempotent:
:tags: [] :tags: []
- :name: cronjob:analytics_instance_statistics_count_job_trigger - :name: cronjob:analytics_instance_statistics_count_job_trigger
:feature_category: :instance_statistics :feature_category: :devops_reports
:has_external_dependencies: :has_external_dependencies:
:urgency: :low :urgency: :low
:resource_boundary: :unknown :resource_boundary: :unknown
...@@ -1329,7 +1329,7 @@ ...@@ -1329,7 +1329,7 @@
:idempotent: true :idempotent: true
:tags: [] :tags: []
- :name: analytics_instance_statistics_counter_job - :name: analytics_instance_statistics_counter_job
:feature_category: :instance_statistics :feature_category: :devops_reports
:has_external_dependencies: :has_external_dependencies:
:urgency: :low :urgency: :low
:resource_boundary: :unknown :resource_boundary: :unknown
......
...@@ -8,7 +8,7 @@ module Analytics ...@@ -8,7 +8,7 @@ module Analytics
DEFAULT_DELAY = 3.minutes.freeze DEFAULT_DELAY = 3.minutes.freeze
feature_category :instance_statistics feature_category :devops_reports
urgency :low urgency :low
idempotent! idempotent!
......
...@@ -5,7 +5,7 @@ module Analytics ...@@ -5,7 +5,7 @@ module Analytics
class CounterJobWorker class CounterJobWorker
include ApplicationWorker include ApplicationWorker
feature_category :instance_statistics feature_category :devops_reports
urgency :low urgency :low
idempotent! idempotent!
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
--- ---
- accessibility_testing - accessibility_testing
- advanced_deployments - advanced_deployments
- alert_management
- analysis - analysis
- api - api
- attack_emulation - attack_emulation
...@@ -21,7 +20,7 @@ ...@@ -21,7 +20,7 @@
- boards - boards
- chatops - chatops
- cloud_native_installation - cloud_native_installation
- cluster_cost_optimization - cluster_cost_management
- code_analytics - code_analytics
- code_quality - code_quality
- code_review - code_review
...@@ -47,6 +46,7 @@ ...@@ -47,6 +46,7 @@
- epics - epics
- error_tracking - error_tracking
- feature_flags - feature_flags
- five_minute_production_app
- foundations - foundations
- fuzz_testing - fuzz_testing
- gdk - gdk
...@@ -59,9 +59,10 @@ ...@@ -59,9 +59,10 @@
- helm_chart_registry - helm_chart_registry
- importers - importers
- incident_management - incident_management
- infrastructure
- infrastructure_as_code - infrastructure_as_code
- insider_threat
- insights - insights
- instance_statistics
- integrations - integrations
- interactive_application_security_testing - interactive_application_security_testing
- internationalization - internationalization
...@@ -75,8 +76,11 @@ ...@@ -75,8 +76,11 @@
- load_testing - load_testing
- logging - logging
- malware_scanning - malware_scanning
- memory
- merge_trains - merge_trains
- metrics - metrics
- mlops
- mobile_signing_deployment
- navigation - navigation
- omnibus_package - omnibus_package
- package_registry - package_registry
...@@ -114,7 +118,7 @@ ...@@ -114,7 +118,7 @@
- tracing - tracing
- usability_testing - usability_testing
- users - users
- value_stream_analytics - value_stream_management
- vulnerability_database - vulnerability_database
- vulnerability_management - vulnerability_management
- web_firewall - web_firewall
......
...@@ -4,7 +4,7 @@ module API ...@@ -4,7 +4,7 @@ module API
class Statistics < ::API::Base class Statistics < ::API::Base
before { authenticated_as_admin! } before { authenticated_as_admin! }
feature_category :instance_statistics feature_category :devops_reports
COUNTED_ITEMS = [Project, User, Group, ForkNetworkMember, ForkNetwork, Issue, COUNTED_ITEMS = [Project, User, Group, ForkNetworkMember, ForkNetwork, Issue,
MergeRequest, Note, Snippet, Key, Milestone].freeze MergeRequest, Note, Snippet, Key, Milestone].freeze
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment