16 lines
264 B
Ruby
16 lines
264 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module Usage
|
||
|
module Metrics
|
||
|
module Instrumentations
|
||
|
class UuidMetric < GenericMetric
|
||
|
value do
|
||
|
Gitlab::CurrentSettings.uuid
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|