-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[Metricbeat] Add collecting AuroraDB metrics in rds metricset #16004
Conversation
"cache_hit_ratio.result_set": c.Float("ResultSetCacheHitRatio"), | ||
|
||
"engine_uptime.sec": c.Float("EngineUptime"), | ||
"volume_read_io_per_sec": c.Float("VolumeReadIOPs"), |
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.
Maybe:
volume.io_per_sec.read
and volume.io_per_sec.write
?
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.
How about volume.read.iops
and volume.write.iops
? I think iops
is the unit of these two metrics. That's why I put it at the end of the metric name.
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.
👍
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.
Any plans for new visualisations for these new metrics?
Hmm I'm not planning to add one in this PR at least. rds metricset has it's predefined dashboard for general rds monitoring metrics(for all different DBs). I'm not sure how beneficial it will be to add a specific dashboard for AuroraDB only. |
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.
lgtm
What does this PR do?
This PR is to add collecting AuroraDB metrics into rds metricset: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Monitoring.html
How to test this PR locally
aws.rds.aurora_bin_log_replica_lag
,aws.rds.aurora_replica.lag.ms
,aurora_replica.lag_max.ms
and etc.Related issues