summaryrefslogtreecommitdiff
path: root/lib/gitlab/usage/metrics/instrumentations/incoming_email_encrypted_secrets_enabled_metric.rb
blob: ab9c6f87023c028b91e4892bf503e7bd275e27ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module Usage
    module Metrics
      module Instrumentations
        class IncomingEmailEncryptedSecretsEnabledMetric < GenericMetric
          value do
            Gitlab::IncomingEmail.encrypted_secrets.active?
          end
        end
      end
    end
  end
end