# frozen_string_literal: true module Gitlab module Ci module Artifacts class Metrics include Gitlab::Utils::StrongMemoize def increment_destroyed_artifacts_count(size) destroyed_artifacts_counter.increment({}, size.to_i) end def increment_destroyed_artifacts_bytes(bytes) destroyed_artifacts_bytes_counter.increment({}, bytes) end private def destroyed_artifacts_counter strong_memoize(:destroyed_artifacts_counter) do name = :destroyed_job_artifacts_count_total comment = 'Counter of destroyed expired job artifacts' ::Gitlab::Metrics.counter(name, comment) end end def destroyed_artifacts_bytes_counter strong_memoize(:destroyed_artifacts_bytes_counter) do name = :destroyed_job_artifacts_bytes_total comment = 'Counter of bytes of destroyed expired job artifacts' ::Gitlab::Metrics.counter(name, comment) end end end end end end