Welcome to Pandora FMS Community!

Find answers, ask questions, and connect with our community around the world.

Welcome to Pandora FMS Community Forums Community support Monitoring a single service…

  • Monitoring a single service…

    Posted by Rick Vestal on April 28, 2007 at 01:20

    I’m having a lot of difficulty monitoring a process on a Windows Server. Basically I want to monitor our Lotus Domino Mail Server. I’ve tried all sorts of syntax but am not getting a response.

    The service is listed in the registry as:

    Lotus Domino Server Service (LotusDominoData)

    and the process is:

    nserver.exe

    Trying both module_process and module_service is yielding nothing. Looking at the examples in the documentation doesn’t shed any light either.

    How would I need to format this to see the service and return a 0 or 1?

    Sancho replied 17 years, 9 months ago 2 Members · 1 Reply
  • 1 Reply
  • Sancho

    Administrator
    April 29, 2007 at 04:33
    2309 Karma points
    Community awards: bulb Bright ideas
    Community rank: tentacle_master_icon Tentacle Master
    Like it
    Up
    0
    Down
    Drop it
    ::

    I’m having a lot of difficulty monitoring a process on a Windows Server. Basically I want to monitor our Lotus Domino Mail Server. I’ve tried all sorts of syntax but am not getting a response.

    The service is listed in the registry as:

    Lotus Domino Server Service (LotusDominoData)

    and the process is:
    nserver.exe

    1?

    For a windows service called “LotusDominoData” (real name, not description).

    module_begin
    module_name Lotus Service
    module_type generic_proc
    module_service LotusDominoData
    module_end

    To monitor process, check the real name with taskmgr (EXACT NAME, including upercase):

    module_begin
    module_name Lotus_Process
    module_type generic_proc
    module_proc nserver.exe
    module_end

    Comment ALL modules from your pandora_agent.conf and uses only this two to prevent any problem with other modules, and test it.