Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aurora cluster monitoring problems #397

Open
vova3379 opened this issue Aug 22, 2022 · 0 comments
Open

Aurora cluster monitoring problems #397

vova3379 opened this issue Aug 22, 2022 · 0 comments

Comments

@vova3379
Copy link

vova3379 commented Aug 22, 2022

Hi, I have a problem with monitoring aurora clusters. I see the error below:
CheckRDS UNKNOWN: Requested time period did not return values from Cloudwatch. Try increasing your time period.
my check looks like the below:
check-rds.rb -l new --disk-warning-over 80 --disk-critical-over 90 --period 300
and in the same time monitoring databases work as need - see check and output below

check-rds.rb -i user --disk-warning-over 85 --disk-critical-over 95 --period 300
CheckRDS OK: 

Role IAM permissions allow rds aurora clusters monitoring:

{
    "Statement": [
        {
            "Action": [
                "cloudwatch:GetMetricData",
                "cloudwatch:GetMetricStatistics",
                "cloudwatch:ListMetrics",
                "rds:DescribeDBClusters",
                "rds:DescribeDBInstances"
            ],
            "Effect": "Allow",
            "Resource": "*"
        }
    ],
    "Version": "2012-10-17"
}

Also, try just and case tries "cloudwatch:*".
RDS Aurora cluster also exist

aws --profile prod rds describe-db-clusters --db-cluster-identifier new
{
    "DBClusters": [
        {
...
            "BackupRetentionPeriod": 5,
            "DatabaseName": "new",
            "DBClusterIdentifier": "new",
            "DBClusterParameterGroup": "new-cluster-pg",
            "DBSubnetGroup": "rds-subnet",
            "Status": "available",

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant