Class: Bosh::Cli::Command::LogManagement

Inherits:
Base show all
Defined in:
lib/cli/commands/log_management.rb

Constant Summary

Constants inherited from Base

Base::DEFAULT_DIRECTOR_PORT

Instance Attribute Summary

Attributes inherited from Base

#args, #exit_code, #options, #out, #runner, #work_dir

Instance Method Summary collapse

Methods inherited from Base

#add_option, #blob_manager, #blobstore, #config, #confirmed?, #deployment, #director, #initialize, #interactive?, #logged_in?, #non_interactive?, #password, #redirect, #release, #remove_option, #target, #target_name, #username, #verbose?

Methods included from Bosh::Cli::CommandDiscovery

#desc, #method_added, #option, #register_command, #usage

Methods included from DeploymentHelper

#cancel_deployment, #deployment_changed?, #inspect_deployment_changes, #job_exists_in_deployment?, #job_must_exist_in_deployment, #job_unique_in_deployment?, #jobs_and_indexes, #latest_release_versions, #prepare_deployment_manifest, #prompt_for_job_and_index, #resolve_release_aliases

Methods included from VersionCalc

#major_version, #minor_version, #version_cmp, #version_greater, #version_less, #version_same

Constructor Details

This class inherits a constructor from Bosh::Cli::Command::Base

Instance Method Details

#fetch_log_resource_id(index, job) ⇒ Object



24
25
26
27
28
29
# File 'lib/cli/commands/log_management.rb', line 24

def fetch_log_resource_id(index, job)
  resource_id = director.fetch_logs(deployment_name, job, index, log_type, filters)
  err('Error retrieving logs') if resource_id.nil?

  resource_id
end

#fetch_logs(job, index = nil) ⇒ Object



15
16
17
18
19
20
21
22
# File 'lib/cli/commands/log_management.rb', line 15

def fetch_logs(job, index = nil)
  index = valid_index_for(job, index)
  check_arguments(index)

  resource_id = fetch_log_resource_id(index, job)
  log_file_path = log_file_destination(index, job)
  download_logs(log_file_path, resource_id)
end