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

pod_logs.rb « usage_counters « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94e29d2fad78d4f6955b7d4f04b17fd4d9b2a920 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Gitlab
  module UsageCounters
    class PodLogs < Common
      def self.base_key
        'POD_LOGS_USAGE_COUNTS'
      end
    end
  end
end