HostPerformanceMetricGroup¶
- 
class oci.opsi.models.HostPerformanceMetricGroup(**kwargs)¶
- Bases: - object- Base Metric Group for Host performance metrics - Attributes - METRIC_NAME_HOST_CPU_USAGE- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. - METRIC_NAME_HOST_FILESYSTEM_USAGE- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. - METRIC_NAME_HOST_GPU_PROCESSES- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. - METRIC_NAME_HOST_GPU_USAGE- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. - METRIC_NAME_HOST_IO_USAGE- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. - METRIC_NAME_HOST_MEMORY_USAGE- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. - METRIC_NAME_HOST_NETWORK_ACTIVITY_SUMMARY- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. - METRIC_NAME_HOST_TOP_PROCESSES- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. - metric_name- [Required] Gets the metric_name of this HostPerformanceMetricGroup. - time_collected- [Required] Gets the time_collected of this HostPerformanceMetricGroup. - Methods - __init__(**kwargs)- Initializes a new HostPerformanceMetricGroup object with values from keyword arguments. - get_subtype(object_dictionary)- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
METRIC_NAME_HOST_CPU_USAGE= 'HOST_CPU_USAGE'¶
- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. This constant has a value of “HOST_CPU_USAGE” 
 - 
METRIC_NAME_HOST_FILESYSTEM_USAGE= 'HOST_FILESYSTEM_USAGE'¶
- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. This constant has a value of “HOST_FILESYSTEM_USAGE” 
 - 
METRIC_NAME_HOST_GPU_PROCESSES= 'HOST_GPU_PROCESSES'¶
- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. This constant has a value of “HOST_GPU_PROCESSES” 
 - 
METRIC_NAME_HOST_GPU_USAGE= 'HOST_GPU_USAGE'¶
- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. This constant has a value of “HOST_GPU_USAGE” 
 - 
METRIC_NAME_HOST_IO_USAGE= 'HOST_IO_USAGE'¶
- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. This constant has a value of “HOST_IO_USAGE” 
 - 
METRIC_NAME_HOST_MEMORY_USAGE= 'HOST_MEMORY_USAGE'¶
- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. This constant has a value of “HOST_MEMORY_USAGE” 
 - 
METRIC_NAME_HOST_NETWORK_ACTIVITY_SUMMARY= 'HOST_NETWORK_ACTIVITY_SUMMARY'¶
- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. This constant has a value of “HOST_NETWORK_ACTIVITY_SUMMARY” 
 - 
METRIC_NAME_HOST_TOP_PROCESSES= 'HOST_TOP_PROCESSES'¶
- A constant which can be used with the metric_name property of a HostPerformanceMetricGroup. This constant has a value of “HOST_TOP_PROCESSES” 
 - 
__init__(**kwargs)¶
- Initializes a new HostPerformanceMetricGroup object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class: - HostMemoryUsage
- HostTopProcesses
- HostCpuUsage
- HostGpuUsage
- HostGpuProcesses
- HostFilesystemUsage
- HostIoUsage
- HostNetworkActivitySummary
 - The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - metric_name (str) – The value to assign to the metric_name property of this HostPerformanceMetricGroup. Allowed values for this property are: “HOST_CPU_USAGE”, “HOST_MEMORY_USAGE”, “HOST_NETWORK_ACTIVITY_SUMMARY”, “HOST_TOP_PROCESSES”, “HOST_FILESYSTEM_USAGE”, “HOST_GPU_USAGE”, “HOST_GPU_PROCESSES”, “HOST_IO_USAGE”
- time_collected (datetime) – The value to assign to the time_collected property of this HostPerformanceMetricGroup.
 
 - 
static get_subtype(object_dictionary)¶
- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. 
 - 
metric_name¶
- [Required] Gets the metric_name of this HostPerformanceMetricGroup. Name of the metric group - Allowed values for this property are: “HOST_CPU_USAGE”, “HOST_MEMORY_USAGE”, “HOST_NETWORK_ACTIVITY_SUMMARY”, “HOST_TOP_PROCESSES”, “HOST_FILESYSTEM_USAGE”, “HOST_GPU_USAGE”, “HOST_GPU_PROCESSES”, “HOST_IO_USAGE” - Returns: - The metric_name of this HostPerformanceMetricGroup. - Return type: - str 
 - 
time_collected¶
- [Required] Gets the time_collected of this HostPerformanceMetricGroup. Collection timestamp Example: “2020-05-06T00:00:00.000Z” - Returns: - The time_collected of this HostPerformanceMetricGroup. - Return type: - datetime 
 
-