Julian Gr
Julian Gr

Reputation: 113

AWS AutoScaling - how does the "Request count per target" measurement works?

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

Answers (1)

Marcin
Marcin

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

Related Questions