Other Articles

RDS DB Instance – Monitor Free Storage Space

This check ensures that free storage space is monitored for Amazon RDS DB instances. Monitoring free storage helps prevent database outages caused by insufficient disk space.

Check Details

  • Resource: RDS DB Instance
  • Check: Monitor RDS DB free storage space
  • Risk: Database downtime or performance degradation due to storage exhaustion

Remediation via AWS Console

  1. Log in to the AWS Management Console and open the Amazon RDS console. Amazon RDS Console
  2. In the left navigation pane, click Databases and select the affected RDS DB instance.
  3. Open the Monitoring tab and search for FreeStorageSpace. RDS Free Storage Space metric
  4. If enhanced monitoring is not enabled, click ModifyEnable enhanced monitoring.
  5. Choose an appropriate monitoring interval and save the changes. Enable enhanced monitoring for RDS

Remediation via AWS CLI

  1. Log in to the AWS Management Console and click the CloudShell icon (>_) in the top-right corner. AWS CloudShell
  2. Enable enhanced monitoring for the RDS DB instance:
    
    
    aws rds modify-db-instance \
     --db-instance-identifier <db-instance-id> \
     --monitoring-interval 60 \
     --monitoring-role-arn <iam-role-arn> \
     --apply-immediately
    

Replace <db-instance-id> and <iam-role-arn> with the appropriate values for your environment.