mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 23:56:09 +10:00
6 lines
219 B
Ruby
6 lines
219 B
Ruby
class Admin::BackgroundJobsController < Admin::ApplicationController
|
|
def show
|
|
@sidekiq_processes = `ps -U #{Settings.gitlab.user} -o euser,pid,pcpu,pmem,stat,start,command | grep sidekiq | grep -v grep`
|
|
end
|
|
end
|