Class: Aws::ComputeOptimizer::Types::ProjectedMetric
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComputeOptimizer::Types::ProjectedMetric
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-computeoptimizer/types.rb
Overview
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.
<note markdown=“1”> 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].
</note>
[1]: docs.aws.amazon.com/compute-optimizer/latest/ug/metrics.html#cw-agent [2]: docs.aws.amazon.com/compute-optimizer/latest/ug/metrics.html#nvidia-cw-agent
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the projected utilization metric.
-
#timestamps ⇒ Array<Time>
The timestamps of the projected utilization metric.
-
#values ⇒ Array<Float>
The values of the projected utilization metrics.
Instance Attribute Details
#name ⇒ String
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
<note markdown=“1”> 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].
</note>
-
‘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.
<note markdown=“1”> The ‘GPU` and `GPU_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].
</note>
[1]: docs.aws.amazon.com/compute-optimizer/latest/ug/metrics.html#cw-agent [2]: docs.aws.amazon.com/compute-optimizer/latest/ug/metrics.html#nvidia-cw-agent
5221 5222 5223 5224 5225 5226 5227 |
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 5221 class ProjectedMetric < Struct.new( :name, :timestamps, :values) SENSITIVE = [] include Aws::Structure end |
#timestamps ⇒ Array<Time>
The timestamps of the projected utilization metric.
5221 5222 5223 5224 5225 5226 5227 |
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 5221 class ProjectedMetric < Struct.new( :name, :timestamps, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<Float>
The values of the projected utilization metrics.
5221 5222 5223 5224 5225 5226 5227 |
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 5221 class ProjectedMetric < Struct.new( :name, :timestamps, :values) SENSITIVE = [] include Aws::Structure end |