Nagios through the SNMP way monitoring HP-UX server‏

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
nagios_asesh
Posts: 4
Joined: Thu Jul 19, 2012 2:33 am

Nagios through the SNMP way monitoring HP-UX server‏

Post by nagios_asesh »

Hi:
In recent HPUX server configuration nagios monitoring, when monitoring memory and disk, appear "null" and respectively "ERROR: Description/Type table: The requested table is empty or does not exist hints". Don't know what the problem is, please help to analysis.


define command{
command_name check_snmp_hpux_mem_v1
command_line $USER1$/check_snmp_hpux_mem.pl -H $HOSTADDRESS$ -C public $USER7$ -T $ARG1$ -w $ARG2$ -c $ARG3$ $ARG4$
}
define service{
use generic-service
host_name labunix
service_description Memory Usage
check_command check_snmp_hpux_mem_v1!-E!80,60!99,90
}


define command{
command_name check_snmp_hpux_storage_v1
command_line $USER1$/check_snmp_hpux_storage.pl -H $HOSTADDRESS$ -C public $USER7$ -m $ARG1$ -w $ARG2$ -c $ARG3$ $ARG4$
}
define service{
use generic-service
host_name labunix
service_description Storage
check_command check_snmp_hpux_storage_v1!'/$'!80!90!pu
}
User avatar
nscott
Posts: 1040
Joined: Wed May 11, 2011 8:54 am

Re: Nagios through the SNMP way monitoring HP-UX server‏

Post by nscott »

Are you quite sure that those OIDs exist on the Nagios server? Do the HPUX MIBs exist in /usr/share/snmp/mibs/ directory on your Nagios server?
Nicholas Scott
Former Nagios employee
nagios_asesh
Posts: 4
Joined: Thu Jul 19, 2012 2:33 am

Re: Nagios through the SNMP way monitoring HP-UX server‏

Post by nagios_asesh »

I don't know where the OIDs documents./usr/share/SNMP/mibs/ list of mibs file is there, and now monitoring HPUX CPU is normal.
User avatar
nscott
Posts: 1040
Joined: Wed May 11, 2011 8:54 am

Re: Nagios through the SNMP way monitoring HP-UX server‏

Post by nscott »

So the monitoring is working now?
Nicholas Scott
Former Nagios employee
nagios_asesh
Posts: 4
Joined: Thu Jul 19, 2012 2:33 am

Re: Nagios through the SNMP way monitoring HP-UX server‏

Post by nagios_asesh »

CPU monitoring normal.

define command{
command_name check_snmp_load_v3
command_line $USER1$/check_snmp_load.pl -H $HOSTADDRESS$ -C public $USER8$ -T $ARG1$ -w $ARG2$ -c $ARG3$ $ARG4$
}
define service{
use generic-service
host_name labunix
service_description CPU load
check_command check_snmp_load_v3!hpux!4,3,3!8,5,5
}
User avatar
nscott
Posts: 1040
Joined: Wed May 11, 2011 8:54 am

Re: Nagios through the SNMP way monitoring HP-UX server‏

Post by nscott »

Awesome, let us know if there is anything else.
Nicholas Scott
Former Nagios employee
Locked