Ad Widget

Collapse

Check the .exe and time

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • karzer
    Member
    • Mar 2010
    • 61

    #1

    Check the .exe and time

    I want to check the excel.exe, but the case of a problem, I want to wait 300 seconds.

    I've written one of the trigger but it did not work. How can we write?
    I know very little English, sorry


    Code:
    {PC:proc.num[excel.exe].last(0)}=0&{PC:proc.num[excel.exe].nodata(300)}=1
  • alixen
    Senior Member
    • Apr 2006
    • 474

    #2
    Hi,

    Originally posted by karzer
    I want to check the excel.exe, but the case of a problem, I want to wait 300 seconds.

    I've written one of the trigger but it did not work. How can we write?
    I know very little English, sorry


    Code:
    {PC:proc.num[excel.exe].last(0)}=0&{PC:proc.num[excel.exe].nodata(300)}=1
    Maybe you should use:
    Code:
    {PC:proc.num[excel.exe].min(300)}=0
    It checks that proc.num[excel.exe] is 0 since 300s.

    proc.num[excel.exe].nodata(300) is not what you want because you are still getting data even if they are 0.

    Regards,
    Alixen
    http://www.alixen.fr/zabbix.html

    Comment

    • karzer
      Member
      • Mar 2010
      • 61

      #3
      Thanks for the answer...

      Code:
      {PC:proc.num[excel.exe].max(300)}=0

      Comment

      Working...