Chart Aurora Postgres read replica instance number?

0

Is it possible to create a Cloudwatch chart of the number of Aurora Postgres read replica instances? I've searched the documents and list of available Cloudwatch metrics, but I can't find anything.

Thanks!

已提问 9 个月前297 查看次数
2 回答
1

There is no direct metric in AWS CloudWatch that allows you to monitor the number of read replica instances for an Aurora PostgreSQL database.

AWS CloudWatch primarily provides metrics for various system aspects such as CPU utilization, database connections, free storage space, etc., but doesn't provide a metric for the count of read replicas.

However, there are a couple of workarounds:

  • AWS RDS API: You can use the AWS RDS API, specifically the describe-db-instances command, to get information about your DB instances. You can filter the results to return only instances that are read replicas by looking at the ReadReplicaSourceDBInstanceIdentifier attribute. A small script can be used to automate this process and you can push these metrics to CloudWatch custom metrics to track the number of read replicas over time.

  • AWS Lambda: You can set up an AWS Lambda function to automatically call the RDS API at regular intervals. The function would count the number of read replicas and then publish that count as a custom metric to CloudWatch. This way, you could have a "chart" of the number of read replicas over time.

Remember, creating custom metrics in CloudWatch may incur additional costs, so keep that in mind when setting up your monitoring system.

profile picture
已回答 9 个月前
0
已接受的回答

Thanks. I found an easier solution on Stackoverflow:

https://stackoverflow.com/questions/62919169/amazon-rds-plot-number-of-instances-in-cloudwatch

Check the comment by "X.Y." to the first question. This solution was easy to setup and worked for me.

已回答 9 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则