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!

2 Answers
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
answered 9 months ago
0
Accepted Answer

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.

answered 9 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions