7 lines
317 B
Ruby
7 lines
317 B
Ruby
class Admin::BackgroundJobsController < Admin::ApplicationController
|
|
def show
|
|
ps_output, _ = Gitlab::Popen.popen(%W(ps -U #{Gitlab.config.gitlab.user} -o pid,pcpu,pmem,stat,start,command))
|
|
@sidekiq_processes = ps_output.split("\n").grep(/sidekiq/)
|
|
@concurrency = Sidekiq.options[:concurrency]
|
|
end
|
|
end
|