Welcome to mirror list, hosted at ThFree Co, Russian Federation.

usage_trends_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2cede1aec054df873f716205204e4d2de7f89f5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class Admin::UsageTrendsController < Admin::ApplicationController
  include RedisTracking

  track_redis_hll_event :index, name: 'i_analytics_instance_statistics'

  feature_category :devops_reports

  urgency :low

  def index
  end
end