debian-mirror-gitlab/spec/tooling/fixtures/metrics/sample_instrumentation_metric.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
270 B
Ruby
Raw Normal View History

2023-03-04 22:38:38 +05:30
# frozen_string_literal: true
module Gitlab
module Usage
module Metrics
module Instrumentations
class ActiveUserCountMetric < DatabaseMetric
operation :count
relation { SuperUser.active }
end
end
end
end
end