Class: GitLab::Exporter::CLI::GitProcess
- Inherits:
-
Object
- Object
- GitLab::Exporter::CLI::GitProcess
- Defined in:
- lib/gitlab_exporter/cli.rb
Overview
Process runner
Takes a pid and name for metrics
Constant Summary collapse
- COMMAND_NAME =
"git-process".freeze
Instance Method Summary collapse
- #help ⇒ Object
-
#initialize(args) ⇒ GitProcess
constructor
A new instance of GitProcess.
- #options(args) ⇒ Object
- #run ⇒ Object
Constructor Details
#initialize(args) ⇒ GitProcess
Returns a new instance of GitProcess.
356 357 358 359 360 361 362 |
# File 'lib/gitlab_exporter/cli.rb', line 356 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
373 374 375 |
# File 'lib/gitlab_exporter/cli.rb', line 373 def help @options.help end |
#options(args) ⇒ Object
364 365 366 367 368 369 370 371 |
# File 'lib/gitlab_exporter/cli.rb', line 364 def (args) args. do |opts| opts. = "Usage: #{EXECUTABLE_NAME} #{COMMAND_NAME} [options]" opts.on("--quantiles", "Return quantiles instead of exact metrics") do @quantiles = true end end end |
#run ⇒ Object
377 378 379 380 381 |
# File 'lib/gitlab_exporter/cli.rb', line 377 def run ::GitLab::Exporter::GitProcessProber.new(quantiles: @quantiles) .probe_git .write_to(@target) end |