-
Notifications
You must be signed in to change notification settings - Fork 88
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
Enhanced monitoring: set cloudwatch query maxInterval=60 sec #62
Enhanced monitoring: set cloudwatch query maxInterval=60 sec #62
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For me it is fine. We have 60 seconds intervals also in another places.
@askomorokhov Do you agree?
Thanks for the review!
I kindly ask some of the collaborators to force-merge it. |
@denisok Can you merge it? Because of waiting for lint. |
@vlinevych, thank you for your contribution! Merged #63 |
@vlinevych Hello! We would love to send you a gift from Percona for your contributions. Please, contact us at community-team@percona.com |
The motivation behind this PR is to reduce the number of requests to Cloudwatch, which are not cheap.
According to the current logic, refresh interval is set to the lowest value of
instance.EnhancedMonitoringInterval
found among the instances.Although RDS supports the granularity of
1, 5, 10, 15, 30, or 60
, the maxInterval is currently limited to 10 sec only.In my case, most of my instances are configured for 60sec and 5 out of 6 requests to Cloudwatch return the same data.
I would like to reevaluate the decision that was made back in 2018
Please let me know what do you think.
Thanks.