Struct aws_sdk_computeoptimizer::types::ProjectedMetric
source · #[non_exhaustive]pub struct ProjectedMetric {
pub name: Option<MetricName>,
pub timestamps: Option<Vec<DateTime>>,
pub values: Option<Vec<f64>>,
}
Expand description
Describes a projected utilization metric of a recommendation option, such as an Amazon EC2 instance. This represents the projected utilization of a recommendation option had you used that resource during the analyzed period.
Compare the utilization metric data of your resource against its projected utilization metric data to determine the performance difference between your current resource and the recommended option.
The Cpu
, Memory
, GPU
, and GPU_MEMORY
metrics are the only projected utilization metrics returned when you run the GetEC2RecommendationProjectedMetrics
action. Additionally, these metrics are only returned for resources with the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent and Enabling NVIDIA GPU utilization with the CloudWatch Agent.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<MetricName>
The name of the projected utilization metric.
The following projected utilization metrics are returned:
-
Cpu
- The projected percentage of allocated EC2 compute units that would be in use on the recommendation option had you used that resource during the analyzed period. This metric identifies the processing power required to run an application on the recommendation option.Depending on the instance type, tools in your operating system can show a lower percentage than CloudWatch when the instance is not allocated a full processor core.
-
Memory
- The percentage of memory that would be in use on the recommendation option had you used that resource during the analyzed period. This metric identifies the amount of memory required to run an application on the recommendation option.Units: Percent
The
Memory
metric is only returned for resources with the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent. -
GPU
- The projected percentage of allocated GPUs if you adjust your configurations to Compute Optimizer's recommendation option. -
GPU_MEMORY
- The projected percentage of total GPU memory if you adjust your configurations to Compute Optimizer's recommendation option.The
GPU
andGPU_MEMORY
metrics are only returned for resources with the unified CloudWatch Agent installed on them. For more information, see Enabling NVIDIA GPU utilization with the CloudWatch Agent.
timestamps: Option<Vec<DateTime>>
The timestamps of the projected utilization metric.
values: Option<Vec<f64>>
The values of the projected utilization metrics.
Implementations§
source§impl ProjectedMetric
impl ProjectedMetric
sourcepub fn name(&self) -> Option<&MetricName>
pub fn name(&self) -> Option<&MetricName>
The name of the projected utilization metric.
The following projected utilization metrics are returned:
-
Cpu
- The projected percentage of allocated EC2 compute units that would be in use on the recommendation option had you used that resource during the analyzed period. This metric identifies the processing power required to run an application on the recommendation option.Depending on the instance type, tools in your operating system can show a lower percentage than CloudWatch when the instance is not allocated a full processor core.
-
Memory
- The percentage of memory that would be in use on the recommendation option had you used that resource during the analyzed period. This metric identifies the amount of memory required to run an application on the recommendation option.Units: Percent
The
Memory
metric is only returned for resources with the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent. -
GPU
- The projected percentage of allocated GPUs if you adjust your configurations to Compute Optimizer's recommendation option. -
GPU_MEMORY
- The projected percentage of total GPU memory if you adjust your configurations to Compute Optimizer's recommendation option.The
GPU
andGPU_MEMORY
metrics are only returned for resources with the unified CloudWatch Agent installed on them. For more information, see Enabling NVIDIA GPU utilization with the CloudWatch Agent.
sourcepub fn timestamps(&self) -> &[DateTime]
pub fn timestamps(&self) -> &[DateTime]
The timestamps of the projected utilization metric.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .timestamps.is_none()
.
source§impl ProjectedMetric
impl ProjectedMetric
sourcepub fn builder() -> ProjectedMetricBuilder
pub fn builder() -> ProjectedMetricBuilder
Creates a new builder-style object to manufacture ProjectedMetric
.
Trait Implementations§
source§impl Clone for ProjectedMetric
impl Clone for ProjectedMetric
source§fn clone(&self) -> ProjectedMetric
fn clone(&self) -> ProjectedMetric
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ProjectedMetric
impl Debug for ProjectedMetric
source§impl PartialEq for ProjectedMetric
impl PartialEq for ProjectedMetric
source§fn eq(&self, other: &ProjectedMetric) -> bool
fn eq(&self, other: &ProjectedMetric) -> bool
self
and other
values to be equal, and is used
by ==
.