RE: Monitoring Compaq RAID
"Eric Emerson" <[email protected]>
| Newsgroups | gmane.network.netsaint.user |
|---|---|
| Message-ID | <[email protected]> |
Pete, I just got this working on Compaq servers running RH 7.2 and RH7.3. Compaq Management CD Version 5.50 I'm using check_snmp as follows: #overall health of chassis includes fans and temp does not include RAID controller command[chassis_health]=/usr/local/bin/netsaint/libexec/check_snmp -H localhost -C public -o enterprises.compaq.cpqHealth.cpqHeMibR ev.cpqHeMibCondition.0 -s "ok(2)" #general status of redundant power supplies command[redundant_pwr_health]=/usr/local/bin/netsaint/libexec/check_snmp -H localhost -C public -o enterprises.compaq.cpqHealth.cpq HeComponent.cpqHeFltTolPwrSupply.cpqHeFltTolPwrSupplyCondition.0 -s "ok(2)" #status of power supply in bay 1 command[bay1_pwr]=/usr/local/bin/netsaint/libexec/check_snmp -H localhost -C public -o enterprises.compaq.cpqHealth.cpqHeComponent. cpqHeFltTolPwrSupply.cpqHeFltTolPowerSupplyTable.cpqHeFltTolPowerSupplyEntry .cpqHeFltTolPowerSupplyCondition.0.1 -s "ok(2)" #status of power supply in bay 2 command[bay2_pwr]=/usr/local/bin/netsaint/libexec/check_snmp -H localhost -C public -o enterprises.compaq.cpqHealth.cpqHeComponent. cpqHeFltTolPwrSupply.cpqHeFltTolPowerSupplyTable.cpqHeFltTolPowerSupplyEntry .cpqHeFltTolPowerSupplyCondition.0.2 -s "ok(2)" #overall status of raidcontroller, logical units, physical drives command[smart_health]=/usr/local/bin/netsaint/libexec/check_snmp -H localhost -C public -o enterprises.compaq.cpqDriveArray.cpqDaMi bRev.cpqDaMibCondition.0 -s "ok(2)" #overall health of this logical unit command[lun1_health]=/usr/local/bin/netsaint/libexec/check_snmp -H localhost -C public -o enterprises.compaq.cpqDriveArray.cpqDaCom ponent.cpqDaLogDrv.cpqDaLogDrvTable.cpqDaLogDrvEntry.cpqDaLogDrvStatus.0.1 - s "ok(2)" #health physical drive bay 0 command[bay0_drive]=/usr/local/bin/netsaint/libexec/check_snmp -H localhost -C public -o enterprises.compaq.cpqDriveArray.cpqDaComp onent.cpqDaPhyDrv.cpqDaPhyDrvTable.cpqDaPhyDrvEntry.cpqDaPhyDrvCondition.0.1 6 -s "ok(2)" #health physical drive bay 1 command[bay1_drive]=/usr/local/bin/netsaint/libexec/check_snmp -H localhost -C public -o enterprises.compaq.cpqDriveArray.cpqDaComp onent.cpqDaPhyDrv.cpqDaPhyDrvTable.cpqDaPhyDrvEntry.cpqDaPhyDrvCondition.0.1 7 -s "ok(2)" -----Original Message----- From: [email protected] [mailto:[email protected]]On Behalf Of Shelfo, Pete Sent: Wednesday, October 02, 2002 8:44 AM To: [email protected] Subject: [netsaint] Monitoring Compaq RAID Has anyone successfully monitored hard disk availability within a Compaq RAID array? I have the Compaq MIBS but they don't work with check_snmp? I want to know when one of the hard disks goes bad. Thanks!!