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

Revert changes on rds metric name #16078

Merged
merged 1 commit into from
Feb 4, 2020
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
4 changes: 2 additions & 2 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2121,7 +2121,7 @@ type: long

--

*`aws.rds.read.iops`*::
*`aws.rds.read_io.ops_per_sec`*::
+
--
The average number of disk read I/O operations per second.
Expand Down Expand Up @@ -2165,7 +2165,7 @@ type: long

--

*`aws.rds.write.iops`*::
*`aws.rds.write_io.ops_per_sec`*::
+
--
The average number of disk write I/O operations per second.
Expand Down
2 changes: 1 addition & 1 deletion x-pack/metricbeat/module/aws/fields.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions x-pack/metricbeat/module/aws/rds/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
type: long
description: >
The lagging size of the replica lagging the most in terms of WAL data received. Applies to PostgreSQL.
- name: read.iops
- name: read_io.ops_per_sec
type: float
description: >
The average number of disk read I/O operations per second.
Expand All @@ -81,7 +81,7 @@
type: long
description: >
The disk space used by transaction logs. Applies to PostgreSQL.
- name: write.iops
- name: write_io.ops_per_sec
type: float
description: >
The average number of disk write I/O operations per second.
Expand Down
4 changes: 2 additions & 2 deletions x-pack/metricbeat/module/aws/rds/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var (
"free_storage.bytes": c.Float("FreeStorageSpace"),
"maximum_used_transaction_ids": c.Float("MaximumUsedTransactionIDs"),
"oldest_replication_slot_lag.mb": c.Float("OldestReplicationSlotLag"),
"read.iops": c.Float("ReadIOPS"),
"read_io.ops_per_sec": c.Float("ReadIOPS"),
"throughput": s.Object{
"commit": c.Float("CommitThroughput"),
"delete": c.Float("DeleteThroughput"),
Expand Down Expand Up @@ -60,7 +60,7 @@ var (
},
"swap_usage.bytes": c.Float("SwapUsage"),
"transaction_logs_generation": c.Float("TransactionLogsGeneration"),
"write.iops": c.Float("WriteIOPS"),
"write_io.ops_per_sec": c.Float("WriteIOPS"),
"queries": c.Float("Queries"),
"deadlocks": c.Float("Deadlocks"),
"volume_used.bytes": c.Float("VolumeBytesUsed"),
Expand Down