debian-mirror-gitlab/app/helpers/sidekiq_helper.rb

18 lines
406 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
module SidekiqHelper
2018-03-17 18:26:18 +05:30
SIDEKIQ_PS_REGEXP = %r{\A
2016-09-29 09:46:39 +05:30
(?<pid>\d+)\s+
(?<cpu>[\d\.,]+)\s+
(?<mem>[\d\.,]+)\s+
2020-03-13 15:44:24 +05:30
(?<state>[DIEKNRSTVWXZLpsl\+<>/\d]+)\s+
2017-08-17 22:00:37 +05:30
(?<start>.+?)\s+
(?<command>(?:ruby\d+:\s+)?sidekiq.*\].*)
2019-07-31 22:56:46 +05:30
\z}x.freeze
2016-09-29 09:46:39 +05:30
def parse_sidekiq_ps(line)
2017-08-17 22:00:37 +05:30
match = line.strip.match(SIDEKIQ_PS_REGEXP)
match ? match[1..6] : Array.new(6, '?')
2016-09-29 09:46:39 +05:30
end
end