debian-mirror-gitlab/lib/gitlab/cluster/puma_worker_killer_observer.rb
2019-10-12 21:52:04 +05:30

23 lines
491 B
Ruby

# frozen_string_literal: true
module Gitlab
module Cluster
class PumaWorkerKillerObserver
def initialize
@counter = Gitlab::Metrics.counter(:puma_killer_terminations_total, 'Number of workers terminated by PumaWorkerKiller')
end
# returns the Proc to be used as the observer callback block
def callback
method(:log_termination)
end
private
def log_termination(worker)
@counter.increment
end
end
end
end