Class: Kontena::Cli::Stacks::LogsCommand

Inherits:
Kontena::Command show all
Includes:
Common, GridOptions, Helpers::LogHelper
Defined in:
lib/kontena/cli/stacks/logs_command.rb

Instance Attribute Summary

Attributes inherited from Kontena::Command

#arguments, #exit_code, #result

Instance Method Summary collapse

Methods included from Helpers::LogHelper

#buffered_log_json, #color_for_container, #color_maps, #colors, #get_logs, included, #show_logs, #stream_logs, #token

Methods included from GridOptions

included

Methods included from Common

#access_token=, #add_master, #any_key_to_continue, #any_key_to_continue_with_timeout, #api_url, #api_url=, #api_url_version, #ask, #clear_current_grid, #client, #cloud_auth?, #cloud_client, #config, #confirm, #confirm_command, #current_account, #current_grid, #current_grid=, #current_master, #current_master=, #current_master_index, #display_account_login_info, #display_login_info, #display_logo, #display_master_login_info, #error, #exit_with_error, #kontena_account, #logger, #pastel, #print, #prompt, #puts, #require_api_url, #require_current_account, #require_current_grid, #require_current_master, #require_token, #reset_client, #reset_cloud_client, #running_silent?, #running_verbose?, #settings, #settings_filename, #spinner, #sprint, #sputs, #use_refresh_token, #vfakespinner, #vputs, #vspinner, #warning, #yes?

Methods inherited from Kontena::Command

banner, callback_matcher, #help_requested?, inherited, requires_current_account_token, requires_current_account_token?, requires_current_grid, requires_current_grid?, requires_current_master, requires_current_master?, requires_current_master_token, requires_current_master_token?, #run, #run_callbacks, #verify_current_account_token, #verify_current_grid, #verify_current_master, #verify_current_master_token

Instance Method Details

#executeObject



14
15
16
17
18
# File 'lib/kontena/cli/stacks/logs_command.rb', line 14

def execute
  show_logs("stacks/#{current_grid}/#{name}/container_logs") do |log|
    show_log(log)
  end
end

#show_log(log) ⇒ Object



20
21
22
23
24
# File 'lib/kontena/cli/stacks/logs_command.rb', line 20

def show_log(log)
  color = color_for_container(log['name'])
  prefix = "#{log['created_at']} [#{log['name']}]:".colorize(color)
  puts "#{prefix} #{log['data']}"
end