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

[8.0](backport #28960) typo in aws.rds.write_iops field in processor #28966

Merged
merged 2 commits into from
Nov 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Groups same timestamp metric values to one event in the app_insights metricset. {pull}20403[20403]
- `beat` module respects `basepath` config option. {pull}28162[28162]
- Fix list_docker.go {pull}28374[28374]
- Fix in rename processor to ingest metrics for `write.iops` to proper field instead of `write_iops` in rds metricset. {pull}28960[28960]

*Packetbeat*

Expand Down
2 changes: 1 addition & 1 deletion x-pack/metricbeat/module/aws/rds/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ processors:
- from: "aws.rds.metrics.TransactionLogsGeneration.avg"
to: "aws.rds.transaction_logs_generation"
- from: "aws.rds.metrics.WriteIOPS.avg"
to: "aws.rds.write_iops"
to: "aws.rds.write.iops"
- from: "aws.rds.metrics.Queries.avg"
to: "aws.rds.queries"
- from: "aws.rds.metrics.Deadlocks.avg"
Expand Down