Skip to content

Commit

Permalink
Cherry-pick #9795 to 6.x: Replace missing field names from status Met…
Browse files Browse the repository at this point in the history
…ricset in MongoDB Dashboard (#9945)

Replace missing field names from status Metricset in MongoDB Dashboard (#9795)
  • Loading branch information
sayden authored Jan 8, 2019
1 parent ec704cd commit b4c3352
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ https://github.com/elastic/beats/compare/v6.6.0...6.x[Check the HEAD diff]
- Fix issue with not collecting Elasticsearch cross-cluster replication stats correctly. {pull}9179[9179]
- The `node.name` field in the `elasticsearch/node` metricset now correctly reports the Elasticsarch node name. Previously this field was incorrectly reporting the node ID instead. {pull}9209[9209]
- Fix issue preventing diskio metrics collection for idle disks. {issue}9124[9124] {pull}9125[9125]
- Fix MongoDB dashboard that had some incorrect field names from `status` Metricset {pull}9795[9795] {issue}9715[9715]

*Packetbeat*

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

0 comments on commit b4c3352

Please sign in to comment.