Ad Widget

Collapse

Create rule for 2 or more times to check some trigger before problem event

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gogo7901
    Junior Member
    • Oct 2020
    • 3

    #1

    Create rule for 2 or more times to check some trigger before problem event

    Hello to all,
    I have a system that should return value under 5 sec and that is the trigger from the problem I set.
    But often ( especially in the middle of the night) it just go over it and in next check it returns under. And it it happens cause check is set to 5 min , support want wait 10 min to see if it return or if it serious problem and they make escalation.
    Is it possible to create rule that will wait for 2 or 3 checks before rise the event in dashboard problems ?


    Regards,
    Georgi

    P.S.: Im using the latest Zabbix - 5.0.4
  • NilsA
    Senior Member
    • Sep 2020
    • 102

    #2
    Hi,
    you can combine muliple trigger conditions logically with and / or. Try something like this:
    "last()>=5 and last(2)>=5"
    This trigger will create an event only if the last two values were not below 5.

    Comment

    Working...