我给了Kibana alert
,它按预期工作。现在,我想在此之上添加另一个条件,但不确定如何做到这一点。
以下警报会每分钟检查一次状况,此状况正常。我想添加条件以在特定时间段(即上午9点至下午6点)之间触发此警报(此时,时区无关紧要)。在此时间以外不要发送任何警报。
我的提醒:
{
"range": {
"data.timestamp": { // time frame
"from": "now-1m", // check every miute.
"to": "now",
"include_lower": true,
"include_upper": true,
"format": "strict_date_optional_time",
"boost": 1
}
}
}