90edcb45cd
as are all other Transaction implementations
14 lines
283 B
Ruby
14 lines
283 B
Ruby
module Gitlab
|
|
module Metrics
|
|
class BackgroundTransaction < Transaction
|
|
def initialize(worker_class)
|
|
super()
|
|
@worker_class = worker_class
|
|
end
|
|
|
|
def labels
|
|
{ controller: @worker_class.name, action: 'perform' }
|
|
end
|
|
end
|
|
end
|
|
end
|