mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
8 lines
147 B
Ruby
Executable file
8 lines
147 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
require "sidekiq/monitor"
|
|
|
|
section = "all"
|
|
section = ARGV[0] if ARGV.size == 1
|
|
|
|
Sidekiq::Monitor::Status.new.display(section)
|