How to send alert between specific time range in Kibana?

I have Kibana alert which has following condition. Now I want to this to be triggered only between certain time frame, i.e. between 9 AM to 6 PM. How/Where can I add that range?

{
    "range": {
        "data.timestamp": {
            "from": "now-1m",
            "to": "now",
            "include_lower": true,
            "include_upper": true,
            "format": "strict_date_optional_time",
            "boost": 1
        }
    }
}

If you're looking for information on options for the range query, you can find it here - it is a core feature of the elasticsearch query DSL, not just a feature of a watch.

More such similar questions answered in discuss posts here:

Thanks
Rashmi

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.