Commit a271570e authored by Marin Jankovski's avatar Marin Jankovski

Show explanation .

parent 4886d8fd
...@@ -5,7 +5,8 @@ ...@@ -5,7 +5,8 @@
%h4 Sidekiq running processes %h4 Sidekiq running processes
- sidekiq_processes = `ps -eo euser,pid,pcpu,pmem,stat,start,command | grep sidekiq | grep -v grep` - sidekiq_processes = `ps -eo euser,pid,pcpu,pmem,stat,start,command | grep sidekiq | grep -v grep`
- if sidekiq_processes.empty? - if sidekiq_processes.empty?
%b There is no running sidekiq process %b There are no running sidekiq processes
%b Please restart GitLab
- else - else
.ui-box .ui-box
%table.zebra-striped %table.zebra-striped
...@@ -25,9 +26,13 @@ ...@@ -25,9 +26,13 @@
%th COMMAND %th COMMAND
%th %th
- sidekiq_processes.split("\n").each do |process| - sidekiq_processes.split("\n").each do |process|
- next unless process.match(/(sidekiq \d+\.\d+\.\d+.+$)/)
- data = process.gsub!(/\s+/m, '|').strip.split('|') - data = process.gsub!(/\s+/m, '|').strip.split('|')
%tr %tr
- 6.times do - 6.times do
%td= data.shift %td= data.shift
%td %td
%td= data.join(" ") %td= data.join(" ")
%b If '[25 of 25 busy]' is shown, restart GitLab.
%br
%b If more than one sidekiq process is listed, stop GitLab, kill the remaining sidekiq processes (sudo pkill -u git -f sidekiq) and restart GitLab.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment