mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
- Set the default 'include' metrics to be .*
This fixes LOGSTASH-968
This commit is contained in:
parent
b3d5de636a
commit
1f2b63761c
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class LogStash::Outputs::Graphite < LogStash::Outputs::Base
|
|||
config :fields_are_metrics, :validate => :boolean, :default => false
|
||||
|
||||
# Include only regex matched metric names
|
||||
config :include_metrics, :validate => :array, :default => []
|
||||
config :include_metrics, :validate => :array, :default => [ ".*" ]
|
||||
|
||||
# Exclude regex matched metric names, by default exclude unresolved %{field} strings
|
||||
config :exclude_metrics, :validate => :array, :default => [ "%\{[^}]+\}" ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue