Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fix remote_write flaky test. {pull}21173[21173]
- Remove io.time from windows {pull}22237[22237]
- Change vsphere.datastore.capacity.used.pct value to betweeen 0 and 1. {pull}23148[23148]
- Fix incorrect types of fields GetHits and Ops in NodeInterestingStats for Couchbase module in Metricbeat {issue}21021[21021] {pull}23287[23287]
- Update config in `windows.yml` file. {issue}23027[23027]{pull}23327[23327]
- Fix metric grouping for windows/perfmon module {issue}23489[23489] {pull}23505[23505]
- Fix GCP not able to request Cloudfunctions metrics if a region filter was set {pull}24218[24218]
Expand Down
4 changes: 2 additions & 2 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -8173,7 +8173,7 @@ type: long
Number of get hits.


type: long
type: double

--

Expand Down Expand Up @@ -8245,7 +8245,7 @@ type: long
Number of operations performed on Couchbase.


type: long
type: double

--

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/couchbase/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 metricbeat/module/couchbase/node/_meta/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"value": 7303
},
"ep_bg_fetched": 0,
"get_hits": 0,
"get_hits": 1.1,
"hostname": "172.17.0.2:8091",
"mcd_memory": {
"allocated": {
Expand All @@ -58,7 +58,7 @@
"bytes": 53962016
}
},
"ops": 0,
"ops": 1.1,
"swap": {
"total": {
"bytes": 4189057024
Expand Down
4 changes: 2 additions & 2 deletions metricbeat/module/couchbase/node/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
description: >
Number of disk fetches performed since the server was started.
- name: get_hits
type: long
type: double
description: >
Number of get hits.
- name: hostname
Expand Down Expand Up @@ -80,7 +80,7 @@
description: >
Memory used by the node (bytes).
- name: ops
type: long
type: double
description: >
Number of operations performed on Couchbase.
- name: swap.total.bytes
Expand Down
4 changes: 2 additions & 2 deletions metricbeat/module/couchbase/node/_meta/testdata/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
"curr_items": 7303,
"curr_items_tot": 7303,
"ep_bg_fetched": 0,
"get_hits": 0,
"get_hits": 1.1,
"mem_used": 53962016,
"ops": 0,
"ops": 1.1,
"vb_replica_curr_items": 0
},
"uptime": "7260",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"value": 7303
},
"ep_bg_fetched": 0,
"get_hits": 0,
"get_hits": 1.1,
"hostname": "172.17.0.2:8091",
"mcd_memory": {
"allocated": {
Expand All @@ -58,7 +58,7 @@
"bytes": 53962016
}
},
"ops": 0,
"ops": 1.1,
"swap": {
"total": {
"bytes": 4189057024
Expand Down
4 changes: 2 additions & 2 deletions metricbeat/module/couchbase/node/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ type NodeInterestingStats struct {
CurrItems int64 `json:"curr_items"`
CurrItemsTot int64 `json:"curr_items_tot"`
EpBgFetched int64 `json:"ep_bg_fetched"`
GetHits int64 `json:"get_hits"`
GetHits float64 `json:"get_hits"`
MemUsed int64 `json:"mem_used"`
Ops int64 `json:"ops"`
Ops float64 `json:"ops"`
VbReplicaCurrItems int64 `json:"vb_replica_curr_items"`
}

Expand Down