Ad Widget

Collapse

Getting flapping even with hysteresis implemented

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • trudesea
    Junior Member
    • Feb 2015
    • 2

    #1

    Getting flapping even with hysteresis implemented

    Hi all,

    So I've read the docs on triggers and I have a disk space percentage free trigger that looks like this:

    ({TRIGGER.VALUE}=0 and {Template OS Windows:vfs.fs.size[{#FSNAME},pfree].last(0)}<10) or ({TRIGGER.VALUE}=1 and {Template OS Windows:vfs.fs.size[{#FSNAME},pfree].last(0)}>20)

    I would assume I'd get one trigger / email when the free space goes below 10% and a recovery after it goes over 20%. Unfortunately I'm getting one each minute. How can I stop this from occurring?

    thanks for any input
  • ingus.vilnis
    Senior Member
    Zabbix Certified Trainer
    Zabbix Certified SpecialistZabbix Certified Professional
    • Mar 2014
    • 908

    #2
    Hi,

    Please check your trigger configuration and that you have NOT checked Multiple PROBLEM events generation

    If checked, you will get a message every time the disk space is checked and below 10%.

    Hope this helps!

    Best Regards,
    Ingus

    Comment

    • trudesea
      Junior Member
      • Feb 2015
      • 2

      #3
      Hi Ingus,

      Actually that's the first thing I made sure was unchecked, and it was unchecked. Other triggers are not doing this so it has me a bit confused.

      Thanks

      Comment

      • harmonica
        Senior Member
        • Jan 2009
        • 251

        #4
        Originally posted by trudesea
        Hi all,

        So I've read the docs on triggers and I have a disk space percentage free trigger that looks like this:

        ({TRIGGER.VALUE}=0 and {Template OS Windows:vfs.fs.size[{#FSNAME},pfree].last(0)}<10) or ({TRIGGER.VALUE}=1 and {Template OS Windows:vfs.fs.size[{#FSNAME},pfree].last(0)}>20)

        I would assume I'd get one trigger / email when the free space goes below 10% and a recovery after it goes over 20%. Unfortunately I'm getting one each minute. How can I stop this from occurring?

        thanks for any input
        ({TRIGGER.VALUE}=0 and {Template OS Windows:vfs.fs.size[{#FSNAME},pfree].last(0)}<10) or ({TRIGGER.VALUE}=1 and {Template OS Windows:vfs.fs.size[{#FSNAME},pfree].last(0)}<19)

        Comment

        Working...