Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Date of release: 22.04.2014

Nagios Plugins for SC81xx/SC21xx/SС11xx checking

Nagios plugin for checking single element (sensor)

Usage:
./check_skycontrol.pl [-v] -H <host> -C <snmp_community> [-2] | (-l login -x passwd) -i <ID> [-P <port>] [-t <timeout>] [-V]

Command line options:

-v, --verbose
    print extra debugging information

-h, --help
    print this help message

-H, --hostname=HOST
    name or IP address of host to check

-C, --community=COMMUNITY NAME
    community name for the host's SNMP agent (implies v 1 protocol)

-P, --port=PORT
    SNMPD port (Default 161)

-2, --v2c
        use SNMP v2 (instead of SNMP v1)

-t, --timeout=INTEGER
    timeout for SNMP in seconds (Default : 5)

-V, --version
    prints version number

-i, --id=INTEGER
        element's id

Nagios command configuration example:

commands.cfg
define command {
        command_name check_snmp_skycontrol
        command_line $USER1$/check_skycontrol.pl -H $HOSTADDRESS$ $ARG1$
}

Nagios command using example (community name: read; element ID: 1004):

services.cfg
define service{
        use                             generic-service    
        # host_name                       test190
        hostgroup_name                  sc-hosts
        contact_groups                  admins
        service_description             Sky Control Service for element with ID=1004 
        check_command                   check_snmp_skycontrol! -C read -i 1004
        normal_check_interval           1
        retry_check_interval            1
        process_perf_data               1
}

Download:

Nagios plugin for checking single element (sensor)

 

check_skycontrol.pl


Nagios plugin for checking table of elements (sensors)

This plugin generate the alarm if at least one element is in the alarm, and the warning if at least one element is in the warning.
This plugin generate the performance data only for sensors with valid value field (as sensors with analog and discrete output)

Usage:
./check_skycontrol_table.pl [-v] -H <host> -C <snmp_community> [-2] | (-l login -x passwd)  [-P <port>] [-t <timeout>] [-V]

-v, --verbose
    print extra debugging information

-h, --help
    print this help message

-H, --hostname=HOST
    name or IP address of host to check

-C, --community=COMMUNITY NAME
    community name for the host's SNMP agent (implies v 1 protocol)

-P, --port=PORT
    SNMPD port (Default 161)

-2, --v2c
     use SNMP v2 (instead of SNMP v1)

-t, --timeout=INTEGER
     timeout for SNMP in seconds (Default : 5)

-V, --version
    prints version number

Nagios command configuration example:

commands.cfg
define command {
        command_name check_snmp_skycontrol_table
        command_line $USER1$/check_skycontrol_table.pl -H $HOSTADDRESS$ $ARG1$
}

Nagios command using example (community name: read; element ID: 1004):

services.cfg
# SNMP Table of Elements for Sky Control devices  
define service{
        use                             generic-service    
        # host_name                     test190
        hostgroup_name                  sc-hosts
        service_description             Sky Control Table of Elements Service 
        check_command                   check_snmp_skycontrol_table! -C read
        normal_check_interval           1
        retry_check_interval            1
        process_perf_data               1
}

Download:

Nagios plugin for checking all elements (sensors)

 

check_skycontrol_table.pl

 

Sky Control script for Nagios passive checking

This script takes parameters from SNMPTT (SNMP Trap Translator) or other, and append this to the Nagios passive checking pipe.
For install put this script to the Nagios plugins/eventhandlers folder
You must be add
 a template for passive testing to Nagios configuration file, and associate this template, for examplewith a group of hosts:

/etc/nagios/objects/schosts.cfg
##
# Trap
##
define service{
        name                    trap-service
        use                     generic-service
        register                0
        is_volatile             1
        check_command           check-host-alive     ;Used to reset the status to OK when 'Schedule an immediate check of this service' is selected
        flap_detection_enabled  0                    ; Flap detection is disabled
        process_perf_data       0                    ; Do not Process performance data
        max_check_attempts      1
        normal_check_interval   1
        retry_check_interval    1
        passive_checks_enabled  1
        active_checks_enabled   0                    ; Prevent active checks from occuring as we are only using passive checks
        check_period            none
        notification_interval   31536000
        notification_options    w,u,c                ; Notify on warning, unknown and critical
        contact_groups          admins
}

define service{
        use                     trap-service
        service_description     Trap1
        hostgroup_name          sc-hosts
}


Download:

Sky Control script for Nagios passive checking

 

submit_check_result

 

Sky Control script for Nagios notify by GSM modem of Sky Control master module

This script provides sending notifications from Nagios by by GSM modem of Sky Control master module

Usage:
./sendsms_skycontrol -H <host> -p <password> -P <phone number> -m <message> 

-H=hostname

    name or IP address of host to check

-p=password
    password for user of mater module

-P=phone
    phone number of recipient

-m=message
    message for sending


For install, put this script to the Nagios plugins folder.

Add commans for sms notify to Nagios commands file:

/etc/nagios/objects/commands.cfg
define command{
        command_name notify-service-by-sms
        command_line $USER1$/sendsms_skycontrol -H 192.168.1.190 -p guest -P $CONTACTPAGER$ -m "Nagios – $NOTIFICATIONTYPE$ : $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$"
}

define command{
        command_name notify-host-by-sms
        command_line $USER1$/sendsms_skycontrol -H 192.168.1.190 -p guest -P $CONTACTPAGER$ -m "Nagios – $NOTIFICATIONTYPE$ : Host $HOSTALIAS$ is $HOSTSTATE$"
}

Add the notify command for contact to Nagios configuration file as bellow:

/etc/nagios/objects/contacts.cfg
define contact{
        contact_name                    nagiosadmin             ; Short name of user
        use                             generic-contact         ; Inherit default values from generic-contact template (defined above)
        alias                           Nagios Admin            ; Full name of user
        service_notification_options    w,u,c,r
        host_notification_options       d,u,r
        service_notification_commands   notify-service-by-email,notify-service-by-sms
        host_notification_commands      notify-host-by-email,notify-host-by-sms
        email                           nagios@localhost        ; <<***** CHANGE THIS TO YOUR EMAIL ADDRESS ******
        pager                           +329999999999           ; <<***** CHANGE THIS TO YOUR PHONE NUMBER ******
}


Download:

Script for Nagios notify by GSM modem

 

sendsms_skycontrol

 


To allow us better support please leave your comments below or on our forum.

 

  • No labels