Class: ForemanMaintain::Utils::Disk::Device

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Includes:
Concerns::SystemHelpers
Defined in:
lib/foreman_maintain/utils/disk/device.rb

Constant Summary collapse

EXTERNAL_MOUNT_TYPE =
%w[fuseblk nfs].freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Concerns::SystemHelpers

#check_min_version, #clean_all_packages, #create_lv_snapshot, #directory_empty?, #downstream_installation?, #execute, #execute!, #execute?, #execute_with_status, #file_exists?, #find_dir_containing_file, #find_package, #find_symlinks, #format_shell_args, #get_lv_info, #get_lv_path, #hostname, included, #package_version, #packages_action, #parse_csv, #parse_json, #rpm_version, #server?, #service_exists?, #shellescape, #smart_proxy?, #systemd_installed?, #version

Methods included from Concerns::Finders

#check, #detector, #feature, #find_all_scenarios, #find_checks, #find_procedures, #find_scenarios, #procedure

Methods included from Concerns::Logger

#logger

Constructor Details

#initialize(dir) ⇒ Device

Returns a new instance of Device.



17
18
19
20
21
22
# File 'lib/foreman_maintain/utils/disk/device.rb', line 17

def initialize(dir)
  @dir = dir
  @name = find_device
  logger.info "#{dir} is externally mounted" if externally_mounted?
  @io_device = IODevice.new(dir)
end

Instance Attribute Details

#dirObject

Returns the value of attribute dir.



11
12
13
# File 'lib/foreman_maintain/utils/disk/device.rb', line 11

def dir
  @dir
end

#io_deviceObject (readonly)

Returns the value of attribute io_device.



13
14
15
# File 'lib/foreman_maintain/utils/disk/device.rb', line 13

def io_device
  @io_device
end

#nameObject

Returns the value of attribute name.



11
12
13
# File 'lib/foreman_maintain/utils/disk/device.rb', line 11

def name
  @name
end

#read_speedObject

Returns the value of attribute read_speed.



11
12
13
# File 'lib/foreman_maintain/utils/disk/device.rb', line 11

def read_speed
  @read_speed
end

#unitObject

Returns the value of attribute unit.



11
12
13
# File 'lib/foreman_maintain/utils/disk/device.rb', line 11

def unit
  @unit
end

Instance Method Details

#performanceObject



30
31
32
# File 'lib/foreman_maintain/utils/disk/device.rb', line 30

def performance
  "#{read_speed} #{unit}"
end

#slow_disk_error_msgObject



24
25
26
27
28
# File 'lib/foreman_maintain/utils/disk/device.rb', line 24

def slow_disk_error_msg
  "Slow disk detected #{dir} mounted on #{name}.
     Actual disk speed: #{read_speed} #{default_unit}
     Expected disk speed: #{expected_io} #{default_unit}."
end