Class: GitLab::Exporter::CLI::SidekiqRunner

Inherits:
Object
  • Object
show all
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

Constructor Details

#initialize(args) ⇒ SidekiqRunner

Returns a new instance of SidekiqRunner.



251
252
253
254
255
256
257
# File 'lib/gitlab_exporter/cli.rb', line 251

def initialize(args)
  @options = options(args)
  @options.parse!

  @target = args.shift || STDOUT
  @target = File.open(@target, "a") if @target.is_a?(String)
end

Instance Method Details

#helpObject



268
269
270
# File 'lib/gitlab_exporter/cli.rb', line 268

def help
  @options.help
end

#options(args) ⇒ Object



259
260
261
262
263
264
265
266
# File 'lib/gitlab_exporter/cli.rb', line 259

def options(args)
  args.options do |opts|
    opts.banner = "Usage: #{EXECUTABLE_NAME} #{COMMAND_NAME} [options]"
    opts.on("--redis-url=\"redis://localhost:6379\"", "Redis URL") do |val|
      @redis_url = val
    end
  end
end

#runObject



272
273
274
275
276
277
278
279
280
281
282
# File 'lib/gitlab_exporter/cli.rb', line 272

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