mirror of https://github.com/Icinga/icinga2.git
Merge pull request #9289 from slalomsk8er/patch-1
Update 03-monitoring-basics.md
This commit is contained in:
commit
a5846866ab
|
@ -1572,12 +1572,18 @@ send notifications to all group members.
|
|||
> Only users who have been notified of a problem before (`Warning`, `Critical`, `Unknown`
|
||||
states for services, `Down` for hosts) will receive `Recovery` notifications.
|
||||
|
||||
Icinga 2 v2.10 allows you to configure `Acknowledgement` and/or `Recovery`
|
||||
Icinga 2 v2.10 allows you to configure a `User` object with `Acknowledgement` and/or `Recovery`
|
||||
without a `Problem` notification. These notifications will be sent without
|
||||
any problem notifications beforehand, and can be used for e.g. ticket systems.
|
||||
|
||||
```
|
||||
object User "ticketadmin" {
|
||||
display_name = "Ticket Admin"
|
||||
enable_notifications = true
|
||||
states = [ OK, Warning, Critical ]
|
||||
types = [ Acknowledgement, Recovery ]
|
||||
email = "ticket@localhost"
|
||||
}
|
||||
```
|
||||
|
||||
### Notifications: Users from Host/Service <a id="alert-notifications-users-host-service"></a>
|
||||
|
|
Loading…
Reference in New Issue