SURVIVOR: mon Check Module
About mon
basics
Module Type Scheduler Remote
check Yes No
syntax
     module mon {
       [username <string>]
       [password <password>]
       [port <number>]
     }
 

Dependencies

Arguments

Name Type Value
username optional string Username to use when authenticating to Mon server.
password optional password Password to use when authenticating to Mon server.
port optional number between 1 and 65535 Port number on which Mon server is listening, default is 2583.

Description

The mon module uses the Mon::Client Perl module to contact the Mon server and check if the scheduler is running.

Examples

  1. For Mon servers that allow the ALL group to get the scheduler status, no username or password is required:
         module mon {}
         
  2. As above, but on a different port:
         module mon {
           port 62583
         }
         
  3. For a server that requires authentication:
         module mon {
           username monUser
           password monPass
         }
         

$Date: 2006/11/19 20:22:42 $
$Revision: 0.6 $
keywords
password
port
username