Merge pull request elastic/elasticsearch#299 from ycombinator/fix-default-throttle-typo

Fixing typo with default throttle period

Original commit: elastic/x-pack-elasticsearch@b37479ff93
This commit is contained in:
Shaunak Kashyap 2015-07-20 06:56:26 -07:00
commit 8e5b321cc7

View File

@ -156,8 +156,8 @@ image::images/watch-execution.jpg[align="center"]
Watcher supports both time-based and acknowledgment-based throttling. This enables you to prevent
actions from being repeatedly executed for the same event.
By default, Watcher uses time-based throttling with a throttle period of 5 minutes. This means that
if a watch is executed every minute, its actions are performed a maximum of once every 5 minutes,
By default, Watcher uses time-based throttling with a throttle period of 5 seconds. This means that
if a watch is executed every second, its actions are performed a maximum of once every 5 seconds,
even when the condition is met. You can configure the throttle period on a per-action basis, at the
watch level, or change the <<configuring-default-throttle-period, default throttle period>> in
`elasticsearch.yml`.