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

Rename read/write_io.ops_per_sec to read/write.iops in rds metricset #28350

Merged
merged 4 commits into from
Oct 18, 2021
Merged
Show file tree
Hide file tree
Changes from 2 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 @@ -117,6 +117,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Remove deprecated fields in Docker module. {issue}11835[11835] {pull}27933[27933]
- Remove deprecated fields in Kafka module. {pull}27938[27938]
- Remove deprecated config option default_region from aws module. {pull}28120[28120]
- Rename read/write_io.ops_per_sec to read/write.iops in rds metricset. {pull}28350[28350]

*Packetbeat*

Expand Down
4 changes: 2 additions & 2 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3931,7 +3931,7 @@ type: long

--

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

--

*`aws.rds.write_io.ops_per_sec`*::
*`aws.rds.write.iops`*::
+
--
The average number of disk write I/O operations per second.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -671,10 +671,10 @@
"85528f23-48f2-462f-8075-eaddd94b21f2": {
"dataType": "number",
"isBucketed": false,
"label": "Average of aws.rds.read_io.ops_per_sec",
"label": "Average of aws.rds.read.iops",
"operationType": "average",
"scale": "ratio",
"sourceField": "aws.rds.read_io.ops_per_sec"
"sourceField": "aws.rds.read.iops"
},
"b9e82720-e098-4dd7-ac5b-f3becccd344a": {
"dataType": "date",
Expand Down Expand Up @@ -877,4 +877,4 @@
"type": "dashboard",
"updated_at": "2021-08-30T19:07:33.984Z",
"version": "WzEyMzQyLDJd"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"label": "Write IOPS (Count/Second)",
"operationType": "formula",
"params": {
"formula": "average(aws.rds.write_io.ops_per_sec)",
"formula": "average(aws.rds.write.iops)",
"isFormulaBroken": false
},
"references": [
Expand All @@ -64,7 +64,7 @@
"label": "Part of Write IOPS (Count/Second)",
"operationType": "average",
"scale": "ratio",
"sourceField": "aws.rds.write_io.ops_per_sec"
"sourceField": "aws.rds.write.iops"
}
},
"incompleteColumns": {}
Expand Down Expand Up @@ -144,4 +144,4 @@
"type": "lens",
"updated_at": "2021-08-04T21:05:50.194Z",
"version": "WzU1MTksMl0="
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
"85528f23-48f2-462f-8075-eaddd94b21f2": {
"dataType": "number",
"isBucketed": false,
"label": "Average of aws.rds.read_io.ops_per_sec",
"label": "Average of aws.rds.read.iops",
"operationType": "average",
"scale": "ratio",
"sourceField": "aws.rds.read_io.ops_per_sec"
"sourceField": "aws.rds.read.iops"
},
"b9e82720-e098-4dd7-ac5b-f3becccd344a": {
"dataType": "date",
Expand Down Expand Up @@ -128,4 +128,4 @@
"type": "lens",
"updated_at": "2021-08-04T21:05:50.194Z",
"version": "WzU1MjAsMl0="
}
}
2 changes: 1 addition & 1 deletion x-pack/metricbeat/module/aws/fields.go

Large diffs are not rendered by default.

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 @@ -68,7 +68,7 @@
type: long
description: >
The lagging size of the replica lagging the most in terms of WAL data received. Applies to PostgreSQL.
- name: read_io.ops_per_sec
- name: read.iops
type: float
description: >
The average number of disk read I/O operations per second.
Expand All @@ -86,7 +86,7 @@
type: long
description: >
The disk space used by transaction logs. Applies to PostgreSQL.
- name: write_io.ops_per_sec
- name: write.iops
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/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ processors:
- from: "aws.rds.metrics.OldestReplicationSlotLag.avg"
to: "aws.rds.oldest_replication_slot_lag.mb"
- from: "aws.rds.metrics.ReadIOPS.avg"
to: "aws.rds.read_io.ops_per_sec"
to: "aws.rds.read.iops"
- from: "aws.rds.metrics.CommitThroughput.avg"
to: "aws.rds.throughput.commit"
- from: "aws.rds.metrics.DeleteThroughput.avg"
Expand Down 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_io.ops_per_sec"
to: "aws.rds.write_iops"
- from: "aws.rds.metrics.Queries.avg"
to: "aws.rds.queries"
- from: "aws.rds.metrics.Deadlocks.avg"
Expand Down