Change the default notification interval to 30 minutes.

Refs #5909
This commit is contained in:
Gunnar Beutner 2014-04-09 06:49:55 +02:00
parent 5619498762
commit e24e128f65
2 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ Attributes:
user_groups | **Optional.** A list of user group names who should be notified.
times | **Optional.** A dictionary containing `begin` and `end` attributes for the notification.
notification_command | **Required.** The name of the notification command which should be executed when the notification is triggered.
notification_interval | **Optional.** The notification interval (in seconds). This interval is used for active notifications. Defaults to 5 minutes.
notification_interval | **Optional.** The notification interval (in seconds). This interval is used for active notifications. Defaults to 30 minutes.
notification_period | **Optional.** The name of a time period which determines when this notification should be triggered. Not set by default.
notification_type_filter | **Optional.** A list of state filters when this notification should be triggered. By default everything is matched.
notification_state_filter | **Optional.** A list of type filters when this notification should be triggered. By default everything is matched.

View File

@ -15,7 +15,7 @@ class Notification : DynamicObject < NotificationNameComposer
{
[config, protected] String notification_command (NotificationCommandRaw);
[config] double notification_interval {
default {{{ return 300; }}}
default {{{ return 1800; }}}
};
[config] String notification_period (NotificationPeriodRaw);
[config] Dictionary::Ptr macros;