mirror of
https://github.com/Fishwaldo/huginn.git
synced 2025-03-15 19:31:26 +00:00
Clarify path for a simple body_text event. (#1705)
* Clarify path for a simple body_text event. It's not really clear with regard to a normal agent that this is simply the name of the field. * updated text
This commit is contained in:
parent
e0fa7f00d0
commit
1497712e04
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ module Agents
|
|||
description <<-MD
|
||||
The Trigger Agent will watch for a specific value in an Event payload.
|
||||
|
||||
The `rules` array contains hashes of `path`, `value`, and `type`. The `path` value is a dotted path through a hash in [JSONPaths](http://goessner.net/articles/JsonPath/) syntax.
|
||||
The `rules` array contains hashes of `path`, `value`, and `type`. The `path` value is a dotted path through a hash in [JSONPaths](http://goessner.net/articles/JsonPath/) syntax. For simple events, this is usually just the name of the field you want, like 'text' for the text key of the event.
|
||||
|
||||
The `type` can be one of #{VALID_COMPARISON_TYPES.map { |t| "`#{t}`" }.to_sentence} and compares with the `value`. Note that regex patterns are matched case insensitively. If you want case sensitive matching, prefix your pattern with `(?-i)`.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue