我希望根据标签选择通知。所以我正在使用查找。
notification default {
email = mailid-1
next = default
timeout = 1m
}
notification nondefault {
email = mailid-2
next = nondefault
timeout = 1m
}
lookup notif {
entry some_tag=value {
mail = nondefault
}
entry some_tag=* {
mail = default
}
}
我在戒备
critNotification = 查找(“通知”,“电子邮件”)
我的问题是可以在
查找中使用多个标签(我正在使用 some_tag=value)?例如。就像是
lookup notif {
entry some_tag=value,some_other_tag=value {
mail = nondefault
}
entry some_tag=* {
mail = default
}
}