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 個月前檢視次數 298 次
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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南