Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS: How is CPU utilization calculated for auto scaling group

I created an Auto Scaling group, with an Application Load Balancer attached, with a policy that when CPU utilization rate is greater than 75% add one more instance. It seems working.

When I have four instances running, how is that CPU Utilization rate calculated? Average of the four instances? Minimum among the four?


1 Answers

You created an Auto Scaling Policy and that policy executes when the alarm you had configured is triggered.

Create Alarm

You can see Average selected in the dropdown list. Various option that can be selected are Average, Minimum, Maximum, Sum and SampleCount.

You can also refer to Scaling Based on Metrics.

like image 52
Jeet Desai Avatar answered Sep 21 '25 09:09

Jeet Desai