-
Notifications
You must be signed in to change notification settings - Fork 64
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
Support log downloads for AWS Aurora Serverless v1 #142
Comments
@eduardocalazansjr Thanks for reaching out! At this moment we don't support Aurora Serverless for system metrics / log monitoring, but you can still connect over Postgres directly - simply leave out the AWS specific settings. You can add "disable_logs: 1" to your configuration to avoid the error message. |
@lfittl but the 'explain plains' doesn't work too, right? |
@eduardocalazansjr Thats correct - EXPLAIN plans rely on Log Insights data (i.e. also needs special integration in this case) |
What is so fundamentally different about Aurora Serverless? Now that v2 is GA, I think it's worth re-visiting this again. (although it isn't serverless anymore, as minimum scaling setting is enforced) |
Btw, I seem to get this on the RDS Aurora Provisioned type as well:
|
@moltar I realize its been a while, but if you are still running into issues, this comes down to the difference between clusters and instances. In AWS Aurora, the cluster does not have database error logs - only the individual instance. When you specify the cluster hostname as the "db_host" in pganalyze, we will try to lookup the cluster name as an instance, which fails with the error you're seeing. The way to resolve this is to use the instance hostname instead (e.g. from the writer instance), which we'll then be able to use for downloading logs. The good news is that Aurora Serverless v2 actually provides support for the RDS log download API - the limitation that this issue is about only affected v1 (which did not support that API, so you would have had to go through CloudWatch to get the logs - with v2 going through CloudWatch is not necessary). Here is the config for a successful test I just ran:
Note the commented out cluster hostname, and instead using the instance hostname. We are exploring ways to make this easier in the future, since it's a very common issue. (updating the title of this issue to clarify the missing support only affects Aurora Serverless v1, not v2) |
I'm trying to integrate the pganalyze collector to my Aurora Serverless Cluster but it can't find the db instance since the command
aws rds describre-db-instances
doesn't return my instance, butaws rds describe-db-clusters
does so.My collector keeps outputing
The text was updated successfully, but these errors were encountered: