1

我希望根据标签选择通知。所以我正在使用查找。

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
  }
}
4

1 回答 1

1

是的,文档中有一个示例(很难找到):

lookup cpu {
    entry host=web-*,dc=eu {
        high = 0.5
    }
    entry host=sql-*,dc=us {
        high = 0.8
    }
    entry host=*,dc=us {
        high = 0.3
    }
    entry host=*,dc=* {
        high = 0.4
    }
}

alert cpu {
    crit = avg(q("avg:rate:os.cpu{host=*,dc=*}", "5m", "")) > lookup("cpu", "high")
}
于 2016-09-20T15:45:53.170 回答