Reputation: 89
Setting up Datadog alert to monitor AWS RDS Aurora databased by percentage used. If the percentage of storage is above 80% alert. Using the following two metrics
A: aws.rds.free_local_storage
B: aws.rds.volume_bytes_used
a/b
Alert if greater than 0.8
Is this possible in Datadog using the two metrics and diving them? or is their another way of achieving this in Datadog ?
Upvotes: 1
Views: 648
Reputation: 7144
Yes it is possible to alert on A/B in Datadog.
avg:aws.rds.free_local_storage{*} by {dbclusteridentifier}
avg:aws.rds.volume_bytes_used{*} by {dbclusteridentifier}
a/(a+b)
0.8
.Upvotes: 1