mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
Merge pull request #292 from jamtur01/emailmatchdocs
Some more docs for the email plugin match option
This commit is contained in:
commit
73ff8123dd
1 changed files with 8 additions and 2 deletions
|
@ -7,11 +7,17 @@ class LogStash::Outputs::Email < LogStash::Outputs::Base
|
|||
config_name "email"
|
||||
plugin_status "experimental"
|
||||
|
||||
# the registered fields that we want to monitor
|
||||
# The registered fields that we want to monitor
|
||||
# A hash of matches of field => value
|
||||
# Takes the form of:
|
||||
#
|
||||
# { "match name", "field.in.event,value.expected, , operand(and/or),field.in.event,value.expected, , or...",
|
||||
# "match name", "..." }
|
||||
#
|
||||
# The match name can be referenced using the `%{matchName}` field.
|
||||
config :match, :validate => :hash, :required => true
|
||||
|
||||
# the To address setting - fully qualified email address to send to
|
||||
# The To address setting - fully qualified email address to send to
|
||||
config :to, :validate => :string, :required => true
|
||||
|
||||
# The From setting for email - fully qualified email address for the From:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue