Class: IControl::System::MemoryUsageInformation

Inherits:
Base::Struct
  • Object
show all
Defined in:
lib/icontrol/system.rb,
lib/icontrol/system.rb

Overview

This structure has been deprecated; use get_host_statistics and related methods and data instead. (As of 9.4.0, the system supports retrieving the overall memory attributes by host; retrieving the detailed subsystem attributes by host is not supported). A struct that contains the memory usage information.

Instance Attribute Summary collapse

Instance Attribute Details

#time_stampIControl::Common::TimeStamp

The time stamp at which the statistics are gathered.

Returns:



237
238
239
# File 'lib/icontrol/system.rb', line 237

def time_stamp
  @time_stamp
end

#total_memoryIControl::Common::ULong64

The total amount of physical memory (bytes) in the host system.

Returns:



237
238
239
# File 'lib/icontrol/system.rb', line 237

def total_memory
  @total_memory
end

#usagesIControl::System::SubsystemMemoryUsageSequence

The list of subsystem memory usage patterns.

Returns:



237
238
239
# File 'lib/icontrol/system.rb', line 237

def usages
  @usages
end

#used_memoryIControl::Common::ULong64

The total amount of memory currently in use (bytes) by the host system.

Returns:



237
238
239
# File 'lib/icontrol/system.rb', line 237

def used_memory
  @used_memory
end