Difference between revisions of "FreeStorageSpace"

From wikieduonline
Jump to navigation Jump to search
Line 4: Line 4:
 
   --statistics Average \
 
   --statistics Average \
 
   --dimensions "Name=YOUR_DBInstanceIdentifier, Value=${INSTANCE_NAME}"
 
   --dimensions "Name=YOUR_DBInstanceIdentifier, Value=${INSTANCE_NAME}"
 +
 +
 +
aws cloudwatch get-metric-statistics            \
 +
                --metric-name FreeStorageSpace    \
 +
                --start-time 2022-07-01T23:00:00Z \
 +
                --end-time 2022-07-30T23:00:00Z  \
 +
                --period 3600                    \
 +
                --namespace AWS/RDS              \
 +
                --statistics Average              \ 
 +
                --dimensions Name=DBInstanceIdentifier,Value=${INSTANCE_NAME}
  
  

Revision as of 22:29, 1 August 2022

 AWS_DEFAULT_REGION="$REGION" aws cloudwatch get-metric-statistics \
 --namespace AWS/RDS --metric-name FreeStorageSpace \
 --start-time $START --end-time $END --period 300 \
 --statistics Average \
 --dimensions "Name=YOUR_DBInstanceIdentifier, Value=${INSTANCE_NAME}"


aws cloudwatch get-metric-statistics             \
               --metric-name FreeStorageSpace    \
               --start-time 2022-07-01T23:00:00Z \ 
               --end-time 2022-07-30T23:00:00Z   \
               --period 3600                     \
               --namespace AWS/RDS               \
               --statistics Average              \  
               --dimensions Name=DBInstanceIdentifier,Value=${INSTANCE_NAME}


See also

Advertising: