I want to make a Cloudwatch alarm when “available connections” falls below a threshold.
This would be difference of DatabaseConnections
and DBMaxConnections
.
I specifically don’t want to use just DatabaseConnections
and compare to a static value, because this is an Aurora Serverless cluster, so the DBMaxConnections
will fluctuate as the ACUs scale.
Is this possible?
1