Class: GitLab::Exporter::CLI::SidekiqRunner
- Inherits:
-
Object
- Object
- GitLab::Exporter::CLI::SidekiqRunner
- Defined in:
- lib/gitlab_exporter/cli.rb
Overview
Sidekiq runner.
It will take a Redis connection URL and print results to STDOUT
Constant Summary collapse
- COMMAND_NAME =
"sidekiq".freeze
Instance Method Summary collapse
- #help ⇒ Object
-
#initialize(args) ⇒ SidekiqRunner
constructor
A new instance of SidekiqRunner.
- #options(args) ⇒ Object
- #run ⇒ Object
Constructor Details
#initialize(args) ⇒ SidekiqRunner
Returns a new instance of SidekiqRunner.
292 293 294 295 296 297 298 |
# File 'lib/gitlab_exporter/cli.rb', line 292 def initialize(args) @options = (args) @options.parse! @target = args.shift || STDOUT @target = File.open(@target, "a") if @target.is_a?(String) end |
Instance Method Details
#help ⇒ Object
309 310 311 |
# File 'lib/gitlab_exporter/cli.rb', line 309 def help @options.help end |
#options(args) ⇒ Object
300 301 302 303 304 305 306 307 |
# File 'lib/gitlab_exporter/cli.rb', line 300 def (args) args. do |opts| opts. = "Usage: #{EXECUTABLE_NAME} #{COMMAND_NAME} [options]" opts.on("--redis-url=\"redis://localhost:6379\"", "Redis URL") do |val| @redis_url = val end end end |
#run ⇒ Object
313 314 315 316 317 318 319 320 321 322 323 |
# File 'lib/gitlab_exporter/cli.rb', line 313 def run validate! ::GitLab::Exporter::SidekiqProber.new(redis_url: @redis_url) .probe_stats .probe_queues .probe_jobs_limit .probe_workers .probe_retries .write_to(@target) end |