Good afternoon,
I added an Eaton ePDU (sensor), and obviously it is showing up as Generic. I meant to upload the MIB prior but forgot. Any chance that after a few pollings it will auto-associate? If not, can it be linked manually? I looked under the Sensors Properties while attempting to edit the device but it looks like a no go. Or, since the MIB is now uploaded is it easier to delete the device and then manually re-add it? Thanks in advance any help you can offer.
Nick Boardman MCSE, MCSA: Security, CCA, Security+ HRSD Systems Engineer
Nick
perhaps you could add something like this to your config.php $os = "eatonups"; $config['os'][$os]['text'] = "Eaton UPS"; $config['os'][$os]['type'] = "power"; $config['os'][$os]['icon'] = "eaton"; $config['os'][$os]['over'][0]['graph'] = "device_voltage"; $config['os'][$os]['over'][0]['text'] = "Voltage"; $config['os'][$os]['over'][1]['graph'] = "device_current"; $config['os'][$os]['over'][1]['text'] = "Current"; $config['os'][$os]['over'][2]['graph'] = "device_frequency"; $config['os'][$os]['over'][2]['text'] = "Frequency"; $config['os'][$os]['sysObjectID'][] = ".1.3.6.1.2.1.33"; #this value is from YOUR "snmpwalk device -v2c -c community -M /opt/observium/mibs sysObjectid" $config['os'][$os]['mibs'][] = "XUPS-MIB";
this might get you some functionality
this concept got my emerson UPS recognized, but not fully functional yet.
I have a file ./includes/polling/os/emerson.inc.php <?php
/** * Observium * * This file is part of Observium. * * @package observium * @subpackage poller * @copyright (C) 2006-2014 Adam Armstrong * */
// Uses UPS-MIB include("includes/polling/os/ups-mib.inc.php");
// EOF
but there doesn't appear t be an .inc.php for the XUPS-MIB
thanks
Peter Hine Senior Technical Support Engineer (Servers) FCoA ITS peter.hine@familycourt.gov.au
********************************************************************** The information contained in this e-mail (including any attachments) is for the exclusive use of the addressee. If you are not the intended recipient please notify the sender immediately and delete this e-mail. It is noted that legal privilege is not waived because you have read this e-mail. **********************************************************************
Peter,
There already is a definition for Eaton UPS's - however, this is not a UPS, and the MIB is not XUPS-MIB ...
Tom
On 24/04/2014 07:37, Peter.Hine@familycourt.gov.au wrote:
Nick
perhaps you could add something like this to your config.php $os = "eatonups"; $config['os'][$os]['text'] = "Eaton UPS"; $config['os'][$os]['type'] = "power"; $config['os'][$os]['icon'] = "eaton"; $config['os'][$os]['over'][0]['graph'] = "device_voltage"; $config['os'][$os]['over'][0]['text'] = "Voltage"; $config['os'][$os]['over'][1]['graph'] = "device_current"; $config['os'][$os]['over'][1]['text'] = "Current"; $config['os'][$os]['over'][2]['graph'] = "device_frequency"; $config['os'][$os]['over'][2]['text'] = "Frequency"; $config['os'][$os]['sysObjectID'][] = ".1.3.6.1.2.1.33"; #this value is from YOUR "snmpwalk device -v2c -c community -M /opt/observium/mibs sysObjectid" $config['os'][$os]['mibs'][] = "XUPS-MIB";
this might get you some functionality
this concept got my emerson UPS recognized, but not fully functional yet.
I have a file ./includes/polling/os/emerson.inc.php <?php
/**
- Observium
- This file is part of Observium.
- @package observium
- @subpackage poller
- @copyright (C) 2006-2014 Adam Armstrong
*/
// Uses UPS-MIB include("includes/polling/os/ups-mib.inc.php");
// EOF
but there doesn't appear t be an .inc.php for the XUPS-MIB
thanks
Peter Hine Senior Technical Support Engineer (Servers) FCoA ITS peter.hine@familycourt.gov.au
The information contained in this e-mail (including any attachments) is for the exclusive use of the addressee. If you are not the intended recipient please notify the sender immediately and delete this e-mail. It is noted that legal privilege is not waived because you have read this e-mail.
observium mailing list observium@observium.org http://postman.memetic.org/cgi-bin/mailman/listinfo/observium
participants (3)
-
Boardman, Nick
-
Peter.Hine@familycourt.gov.au
-
Tom Laermans