How can I create CloudWatch alarms to monitor the Amazon RDS free storage space and prevent storage full issues?

Lesedauer: 3 Minute
0

My Amazon Relational Database Service (Amazon RDS) DB instance is in a STORAGE_FULL state, and the DB instance is hanging. How can I monitor the available storage space for my DB instance to avoid running out of storage?

Short description

Create alarms in the Amazon CloudWatch console or use the AWS Command Line Interface (AWS CLI) to create alarms that monitor free storage space. By creating CloudWatch alarms that notify you when the FreeStorageSpace metric reaches a defined threshold, you can prevent storage full issues. This can prevent downtime that occurs when your Amazon RDS DB instance runs out of storage.

Note: Aurora databases don't have the FreeStorageSpace metric. Therefore, these steps apply only to RDS databases.

Resolution

Note: If you receive errors when running AWS CLI commands, make sure that you’re using the most recent version of the AWS CLI.

  1. Open the CloudWatch console.
  2. Under Alarms in the navigation pane, choose All alarms.
  3. Choose Create alarm, and then choose Select metric.
  4. Search for the FreeStorageSpace metric.
  5. Choose RDS, and then choose Per-Database metrics.
  6. For the instance that you want to monitor, choose the DB instance identifier FreeStorageSpace metric.
  7. Set the statistic to Minimum, and set the period to 1 minute.
  8. In the Conditions section, configure the threshold. For example, choose Lower/Equal, and then specify the threshold value.
    Note: You must specify the value for the parameter in bytes. For example, 10 GB is 10,737,418,240 bytes.
  9. Choose Next.
  10. From the Configure actions page, for the alarm state, choose in Alarm.
  11. From Select an SNS topic, choose Create new topic.
  12. Enter the topic name. For example: rds-storage-alarm.
  13. For Email endpoints that will receive the notification, enter your email address.
  14. Choose Create topic. This action sends a confirmation email to the address that you specified.
  15. Open the email notification that you received from AWS Notifications, and then choose Confirm subscription.
  16. Return to the Configure actions page in the CloudWatch console.
  17. Choose Next.
  18. Enter a name and description for your alarm, and then choose Next.
  19. Review the preview of your metric, and then choose Create alarm.

After you create the alarm, open the Amazon RDS console, and then choose Databases from the navigation pane. Choose the name of your database, and then choose the Monitoring tab to view the metrics for FreeStorageSpace.

It's also a best practice to create a second, critical alarm for a lower threshold. For example, you might set your first alarm for 25 GB, and the second critical alarm to 10 GB.

You can also prevent storage full issues by using the following methods:

For more methods for avoiding storage full issues, see Monitoring Amazon RDS. If your RDS DB instance storage is already full, see How do I resolve problems that occur when Amazon RDS DB instances run out of storage?


Related information

Using Amazon CloudWatch alarms

put-metric-alarm

AWS OFFICIAL
AWS OFFICIALAktualisiert vor 9 Monaten