ManageIQ/manageiq

View on GitHub
app/models/metering_container_image.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
88%
class MeteringContainerImage < ChargebackContainerImage
  set_columns_hash(
    :metering_allocated_cpu_cores_metric                => :integer,
    :metering_allocated_memory_metric                   => :integer,
    :metering_used_metric                               => :integer,
    :existence_hours_metric                             => :integer,
    :beginning_of_resource_existence_in_report_interval => :datetime,
    :end_of_resource_existence_in_report_interval       => :datetime
  )

  include Metering

  def self.report_col_options
    {
      "cpu_cores_allocated_metric"          => {:grouping => [:total]},
      "cpu_cores_used_metric"               => {:grouping => [:total]},
      "existence_hours_metric"              => {:grouping => [:total]},
      "fixed_compute_metric"                => {:grouping => [:total]},
      "memory_allocated_metric"             => {:grouping => [:total]},
      "metering_allocated_cpu_cores_metric" => {:grouping => [:total]},
      "metering_allocated_memory_metric"    => {:grouping => [:total]},
      "memory_used_metric"                  => {:grouping => [:total]},
      "metering_used_metric"                => {:grouping => [:total]},
      "net_io_used_metric"                  => {:grouping => [:total]},
    }
  end

  def self.build_results_for_report_MeteringContainerImage(options)
    build_results_for_report_ChargebackContainerImage(options)
  end

  def self.display_name(number = 1)
    n_('Metering for Image', 'Metering for Images', number)
  end
end