gitlab-org--gitlab-foss/app/helpers/sidekiq_helper.rb

16 lines
369 B
Ruby
Raw Normal View History

2016-09-06 15:40:49 -04:00
module SidekiqHelper
2018-01-27 00:35:53 -05:00
SIDEKIQ_PS_REGEXP = %r{\A
2016-09-08 13:41:25 -04:00
(?<pid>\d+)\s+
(?<cpu>[\d\.,]+)\s+
(?<mem>[\d\.,]+)\s+
2018-01-27 00:35:53 -05:00
(?<state>[DIEKNRSTVWXZNLpsl\+<>/\d]+)\s+
(?<start>.+?)\s+
(?<command>(?:ruby\d+:\s+)?sidekiq.*\].*)
2018-01-27 00:35:53 -05:00
\z}x
2016-09-06 15:40:49 -04:00
def parse_sidekiq_ps(line)
match = line.strip.match(SIDEKIQ_PS_REGEXP)
match ? match[1..6] : Array.new(6, '?')
2016-09-06 15:40:49 -04:00
end
end