Skip to content
Merged
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@ otherwise no tag is added. {issue}42208[42208] {pull}42403[42403]
- Add new metrics to vSphere Virtual Machine dataset (CPU usage percentage, disk average usage, disk read/write rate, number of disk reads/writes, memory usage percentage). {pull}44205[44205]
- Added checks for the Resty response object in all Meraki module API calls to ensure proper handling of nil responses. {pull}44193[44193]
- Add latency config option to Azure Monitor module. {pull}44366[44366]
- Increase default polling period for MongoDB module from 10s to 60s {pull}44781[44781]

*Metricbeat*

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/metricbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ metricbeat.modules:
#------------------------------- MongoDB Module -------------------------------
- module: mongodb
metricsets: ["dbstats", "status", "collstats", "metrics", "replstatus"]
period: 10s
period: 60s
enabled: true

# The hosts must be passed as MongoDB URLs in the format:
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/mongodb/_meta/config.reference.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- module: mongodb
metricsets: ["dbstats", "status", "collstats", "metrics", "replstatus"]
period: 10s
period: 60s
enabled: true

# The hosts must be passed as MongoDB URLs in the format:
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/mongodb/_meta/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# - collstats
# - metrics
# - replstatus
period: 10s
period: 60s

# The hosts must be passed as MongoDB URLs in the format:
# [mongodb://][user:pass@]host[:port].
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/modules.d/mongodb.yml.disabled
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# - collstats
# - metrics
# - replstatus
period: 10s
period: 60s

# The hosts must be passed as MongoDB URLs in the format:
# [mongodb://][user:pass@]host[:port].
Expand Down
2 changes: 1 addition & 1 deletion x-pack/metricbeat/metricbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ metricbeat.modules:
#------------------------------- MongoDB Module -------------------------------
- module: mongodb
metricsets: ["dbstats", "status", "collstats", "metrics", "replstatus"]
period: 10s
period: 60s
enabled: true

# The hosts must be passed as MongoDB URLs in the format:
Expand Down