- Set the default 'include' metrics to be .*

This fixes LOGSTASH-968
This commit is contained in:
Jordan Sissel 2013-05-01 12:47:25 -07:00
parent b3d5de636a
commit 1f2b63761c

View file

@ -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 => [ "%\{[^}]+\}" ]