Reputation: 113
When using a scaling policy in AWS fargate service, i want to scale using the "request count per target" metric.
But i am having difficulty understanding how this is determined. Is there a time period associated with the request count?
eg: requests per target per minute
Or are these concurrent requests? If it is concurrent requests, would concurrent requests be determined as requests which have been sent but not responded to?
Upvotes: 3
Views: 4259
Reputation: 238249
From docs about RequestCountPerTarget:
The average number of requests received by each target in a target group.
and
sends its metrics in 60-second intervals.
And it represents average
number of requests in 1 minute intervals. I think you should read up on how metrics work in AWS.
Upvotes: 4