16 lines
270 B
Ruby
16 lines
270 B
Ruby
|
# 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
|