Interface HypervisorStatistics
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
ExtHypervisorStatistics
public interface HypervisorStatistics extends ModelEntity
Represents a Hypervisor Statistics Entity used within the OSHypervisor extensions API- Author:
- Jeremy Unruh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCount()Gets the count.intgetCurrentWorkload()Gets the current workload.intgetFreeDisk()Gets the free disk.intgetFreeRam()Gets the free ram.intgetLeastAvailableDisk()Gets the least available disk.intgetLocal()Gets the local.intgetLocalUsed()Gets the local used.intgetMemory()Gets the memory.intgetMemoryUsed()Gets the memory used.intgetRunningVM()Gets the running vm.intgetVirtualCPU()Gets the virtual cpu.intgetVirtualUsedCPU()Gets the virtual used cpu.
-
-
-
Method Detail
-
getCount
int getCount()
Gets the count.- Returns:
- the count
-
getCurrentWorkload
int getCurrentWorkload()
Gets the current workload.- Returns:
- the current workload
-
getLeastAvailableDisk
int getLeastAvailableDisk()
Gets the least available disk.- Returns:
- the least available disk
-
getFreeDisk
int getFreeDisk()
Gets the free disk.- Returns:
- the free disk
-
getFreeRam
int getFreeRam()
Gets the free ram.- Returns:
- the free ram
-
getLocal
int getLocal()
Gets the local.- Returns:
- the local
-
getLocalUsed
int getLocalUsed()
Gets the local used.- Returns:
- the local used
-
getMemory
int getMemory()
Gets the memory.- Returns:
- the memory
-
getMemoryUsed
int getMemoryUsed()
Gets the memory used.- Returns:
- the memory used
-
getRunningVM
int getRunningVM()
Gets the running vm.- Returns:
- the running vm
-
getVirtualCPU
int getVirtualCPU()
Gets the virtual cpu.- Returns:
- the virtual cpu
-
getVirtualUsedCPU
int getVirtualUsedCPU()
Gets the virtual used cpu.- Returns:
- the virtual used cpu
-
-