Ad Widget

Collapse

FLAPPING, do not want to get too many notification

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bisana
    Member
    • Jul 2005
    • 87

    #1

    FLAPPING, do not want to get too many notification

    Hi All,
    I am preparing a demo, my intention was to send notification when the network link input speed goes less than 1Mb for the last 10 minutes, which I did and I was getting notification, but it keeps on sending the notification, which did not go well with the evaluation team
    Initially my trigger was
    {Demo-ISP-Router:ISP20MbDemoInput.min(10)}<1M

    Then to solve the issue of too much notification, I found that I have to use flapping way
    so I created a AND condition with the trigger status and the min value, but this also not helping out
    the modified condition is
    {Demo-ISP-Router:ISP20MbDemoInput.min(10)}<1M and {TRIGGER.VALUE}=0

    But this also I did not find any much success.
    Like to request for guidance and feedback, how could I make the trigger work better
    Thanks
    Joseph John
  • Clarker
    Junior Member
    • Mar 2016
    • 1

    #2
    Originally posted by bisana
    Hi All,
    I am preparing a demo, my intention was to send notification when the network link input speed goes less than 1Mb for the last 10 minutes, which I did and I was getting notification, but it keeps on sending the notification, which did not go well with the evaluation team
    Initially my trigger was
    {Demo-ISP-Router:ISP20MbDemoInput.min(10)}<1M

    Then to solve the issue of too much notification, I found that I have to use flapping way
    so I created a AND condition with the trigger status and the min value, but this also not helping out
    the modified condition is
    {Demo-ISP-Router:ISP20MbDemoInput.min(10)}<1M and {TRIGGER.VALUE}=0

    But this also I did not find any much success.
    Like to request for guidance and feedback, how could I make the trigger work better
    Thanks
    Joseph John
    Yeah, it would be great if we could set what notifications that we want to avoid getting to many.
    Last edited by Clarker; 08-10-2021, 16:43.

    Comment

    • jan.garaj
      Senior Member
      Zabbix Certified Specialist
      • Jan 2010
      • 506

      #3
      Recommended article http://blog.zabbix.com/no-more-flapp...mart-way/1488/

      Test:
      Code:
      {Demo-ISP-Router:ISP20MbDemoInput.min(10m)}<1M
      Your homework is to find what is difference between min(10) and min(10m) :-)
      Devops Monitoring Expert advice: Dockerize/automate/monitor all the things.
      My DevOps stack: Docker / Kubernetes / Mesos / ECS / Terraform / Elasticsearch / Zabbix / Grafana / Puppet / Ansible / Vagrant

      Comment

      • bisana
        Member
        • Jul 2005
        • 87

        #4
        Added or and conditions

        Thanks for the links and guidance.

        I will find out the difference which u had asked me to do,

        Let me think here, what do I want. I want less notification. Ok if the trigger is active minimum bandwidth less than 1 Mb, I get a problem notification and it been in the problem till the last value of bandwidth less than 1.5Mb. In this way I will be getting fewer notification than previous one. The following is what I managed to do



        Code:
        ({TRIGGER.VALUE}=0 and {Demo-ISP-Router:ISP20MbDemoInput.min(10m)}<1M ) 
        or 
        ({TRIGGER.VALUE}=1 and {Demo-ISP-Router:ISP20MbDemoInput.min(10m)}<1.5M)
        I applied it and waiting on the parameters to get active.


        Thanks
        Joseph John

        Comment

        • kloczek
          Senior Member
          • Jun 2006
          • 1771

          #5
          Originally posted by jan.garaj
          BTW: zabbix triggers hysteresis setup is described in regular zabbix documentation:
          http://uk.linkedin.com/pub/tomasz-k%...zko/6/940/430/
          https://kloczek.wordpress.com/
          zapish - Zabbix API SHell binding https://github.com/kloczek/zapish
          My zabbix templates https://github.com/kloczek/zabbix-templates

          Comment

          Working...