diff --git a/metricbeat/docs/modules/system.asciidoc b/metricbeat/docs/modules/system.asciidoc index 164abe5c91e..93975cdeb6a 100644 --- a/metricbeat/docs/modules/system.asciidoc +++ b/metricbeat/docs/modules/system.asciidoc @@ -269,7 +269,7 @@ metricbeat.modules: # This option enables the use of performance counters to collect data for cpu/core metricset. # Only effective for Windows. # You should use this option if running beats on machins with more than 64 cores. - #use_performance_counters: true + #use_performance_counters: false ---- [float] diff --git a/metricbeat/metricbeat.reference.yml b/metricbeat/metricbeat.reference.yml index 429b11ac843..767d947670e 100644 --- a/metricbeat/metricbeat.reference.yml +++ b/metricbeat/metricbeat.reference.yml @@ -145,7 +145,7 @@ metricbeat.modules: # This option enables the use of performance counters to collect data for cpu/core metricset. # Only effective for Windows. # You should use this option if running beats on machins with more than 64 cores. - #use_performance_counters: true + #use_performance_counters: false #------------------------------ Aerospike Module ------------------------------ - module: aerospike diff --git a/metricbeat/module/system/_meta/config.reference.yml b/metricbeat/module/system/_meta/config.reference.yml index 777a6444eca..bd8b64f10fe 100644 --- a/metricbeat/module/system/_meta/config.reference.yml +++ b/metricbeat/module/system/_meta/config.reference.yml @@ -85,4 +85,4 @@ # This option enables the use of performance counters to collect data for cpu/core metricset. # Only effective for Windows. # You should use this option if running beats on machins with more than 64 cores. - #use_performance_counters: true + #use_performance_counters: false diff --git a/metricbeat/module/system/core/_meta/docs.asciidoc b/metricbeat/module/system/core/_meta/docs.asciidoc index 751c4759a9c..be362a6e296 100644 --- a/metricbeat/module/system/core/_meta/docs.asciidoc +++ b/metricbeat/module/system/core/_meta/docs.asciidoc @@ -25,5 +25,5 @@ metricbeat.modules: - module: system metricsets: [core] core.metrics: [percentages, ticks] - #use_performance_counters: true + #use_performance_counters: false ---- diff --git a/metricbeat/module/system/core/config.go b/metricbeat/module/system/core/config.go index 940a2328216..74fb6277464 100644 --- a/metricbeat/module/system/core/config.go +++ b/metricbeat/module/system/core/config.go @@ -67,5 +67,5 @@ func (c Config) Validate() (metrics.MetricOpts, error) { var defaultConfig = Config{ Metrics: []string{percentages}, - UserPerformanceCounters: true, + UserPerformanceCounters: false, } diff --git a/metricbeat/module/system/cpu/_meta/docs.asciidoc b/metricbeat/module/system/cpu/_meta/docs.asciidoc index b0d9da58459..71cee57c615 100644 --- a/metricbeat/module/system/cpu/_meta/docs.asciidoc +++ b/metricbeat/module/system/cpu/_meta/docs.asciidoc @@ -26,5 +26,5 @@ metricbeat.modules: - module: system metricsets: [cpu] cpu.metrics: [percentages, normalized_percentages, ticks] - #use_performance_counters: true + #use_performance_counters: false ---- diff --git a/metricbeat/module/system/cpu/config.go b/metricbeat/module/system/cpu/config.go index 7cfffed57a5..9751e423288 100644 --- a/metricbeat/module/system/cpu/config.go +++ b/metricbeat/module/system/cpu/config.go @@ -71,5 +71,5 @@ func (c Config) Validate() (metrics.MetricOpts, error) { var defaultConfig = Config{ Metrics: []string{percentages, normalizedPercentages}, - UserPerformanceCounters: true, + UserPerformanceCounters: false, } diff --git a/x-pack/metricbeat/metricbeat.reference.yml b/x-pack/metricbeat/metricbeat.reference.yml index aa103ebde55..b46ff327adb 100644 --- a/x-pack/metricbeat/metricbeat.reference.yml +++ b/x-pack/metricbeat/metricbeat.reference.yml @@ -145,7 +145,7 @@ metricbeat.modules: # This option enables the use of performance counters to collect data for cpu/core metricset. # Only effective for Windows. # You should use this option if running beats on machins with more than 64 cores. - #use_performance_counters: true + #use_performance_counters: false #------------------------------- ActiveMQ Module ------------------------------- - module: activemq