Class: HammerCLICsv::CsvCommand::ReportsCommand

Inherits:
BaseCommand
  • Object
show all
Defined in:
lib/hammer_cli_csv/reports.rb

Constant Summary collapse

TIME =
'Time'
APPLIED =
'Applied'
RESTARTED =
'Restarted'
FAILED =
'Failed'
FAILED_RESTARTS =
'Failed Restarts'
SKIPPED =
'Skipped'
PENDING =
'Pending'
METRICS =
'Metrics'

Constants inherited from BaseCommand

BaseCommand::COUNT, BaseCommand::NAME

Instance Method Summary collapse

Methods inherited from BaseCommand

#associate_locations, #associate_organizations, #build_os_name, #check_server_status, #collect_column, #execute, #export_column, #foreman_architecture, #foreman_domain, #foreman_environment, #foreman_filter, #foreman_location, #foreman_operatingsystem, #foreman_organization, #foreman_partitiontable, #foreman_permission, #foreman_role, #foreman_template_kind, #hammer, #hammer_context, #katello_contentview, #katello_hostcollection, #katello_repository, #katello_subscription, #labelize, #lifecycle_environment, #namify, #pluralize, #split_os_name, #thread_import

Instance Method Details

#create_reports_from_csv(line) ⇒ Object



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/hammer_cli_csv/reports.rb', line 55

def create_reports_from_csv(line)
  line[COUNT].to_i.times do |number|
    name = namify(line[NAME], number)

    if !@existing_reports[name]
      print "Creating report '#{name}'..." if option_verbose?
      reported_at = line[TIME] || Time.now
      report = @api.resource(:reports)\
        .call(:create, {
                'host' => name,
                'reported_at' => reported_at,
                'status' => {
                  'applied' => line[APPLIED],
                  'restarted' => line[RESTARTED],
                  'failed' => line[FAILED],
                  'failed_restarts' => line[FAILED_RESTARTS],
                  'skipped' => line[SKIPPED],
                  'pending' => line[PENDING]
                },
                'metrics' => JSON.parse(line[METRICS]),
                'logs' => []
              })
      @existing_reports[name] = report['id']
    else
      print "Updating report '#{name}'..." if option_verbose?
      @api.resource(:reports)\
        .call(:update, {
                'id' => @existing_reports[name]
              })
    end

    puts 'done' if option_verbose?
  end
end

#exportObject



27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/hammer_cli_csv/reports.rb', line 27

def export
  CSV.open(option_csv_file || '/dev/stdout', 'wb', {:force_quotes => false}) do |csv|
    csv << [NAME, COUNT]
    @api.resource(:reports)\
      .call(:index, {
              'per_page' => 999999
            })['results'].each do |report|
      csv << [report['host_name'], 1, report['metrics'].to_json]
    end
  end

  HammerCLI::EX_OK
end

#importObject



41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/hammer_cli_csv/reports.rb', line 41

def import
  @existing_reports = {}
  @api.resource(:reports)\
    .call(:index, {
            'per_page' => 999999
          })['results'].each do |report|
    @existing_reports[report['name']] = report['id']
  end

  thread_import do |line|
    create_reports_from_csv(line)
  end
end