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

Replace missing field names from status Metricset in MongoDB Dashboard #9795

Merged
merged 3 commits into from
Jan 8, 2019
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
2 changes: 2 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d

*Metricbeat*

- Fix MongoDB dashboard that had some incorrect field names from `status` Metricset {pull}9795[9795] {issue}9715[9715]

*Packetbeat*

- Adjust Packetbeat `http` fields to ECS Beta 2 {pull}9645[9645]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
"id": "1",
"params": {
"customLabel": "command",
"field": "mongodb.status.opcounters.command"
"field": "mongodb.status.ops.counters.command"
},
"schema": "metric",
"type": "avg"
Expand All @@ -203,7 +203,7 @@
"id": "3",
"params": {
"customLabel": "delete",
"field": "mongodb.status.opcounters.delete"
"field": "mongodb.status.ops.counters.delete"
},
"schema": "metric",
"type": "avg"
Expand All @@ -213,7 +213,7 @@
"id": "4",
"params": {
"customLabel": "getmore",
"field": "mongodb.status.opcounters.getmore"
"field": "mongodb.status.ops.counters.getmore"
},
"schema": "metric",
"type": "avg"
Expand All @@ -223,7 +223,7 @@
"id": "5",
"params": {
"customLabel": "insert",
"field": "mongodb.status.opcounters.insert"
"field": "mongodb.status.ops.counters.insert"
},
"schema": "metric",
"type": "avg"
Expand All @@ -233,7 +233,7 @@
"id": "6",
"params": {
"customLabel": "query",
"field": "mongodb.status.opcounters.query"
"field": "mongodb.status.ops.counters.query"
},
"schema": "metric",
"type": "avg"
Expand All @@ -243,7 +243,7 @@
"id": "7",
"params": {
"customLabel": "update",
"field": "mongodb.status.opcounters_replicated.update"
"field": "mongodb.status.ops.replicated.update"
},
"schema": "metric",
"type": "avg"
Expand Down