Skip to content

Commit

Permalink
Revert changes on rds metric name (#16078)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiyan-sheng committed Feb 4, 2020
1 parent d017df5 commit 61253f1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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

0 comments on commit 61253f1

Please sign in to comment.