16 lines
255 B
Ruby
16 lines
255 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module Usage
|
||
|
module Metrics
|
||
|
module Instrumentations
|
||
|
class CountBoardsMetric < DatabaseMetric
|
||
|
operation :count
|
||
|
|
||
|
relation { Board }
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|