Code: Select all
<interface>
<name>Get SNMP Interfaces</name>
<description>Queries a host for a list of monitorable temp sensors</description>
<oid_index>.1.3.6.1.4.1.17373.3.4</oid_index>
<oid_num_indexes>.1.3.6.1.4.1.17373.3.1.8.1.4</oid_num_indexes>
<index_title_format>|chosen_order_field|</index_title_format>
<fields>
<senseDescr>
<name>Description</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.17373.3.4.1.2</oid>
</senseDescr>
<senseName>
<name>Name</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.17373.3.4.1.3</oid>
</senseName>
<senseTemp>
<name>Temp</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.17373.3.4.1.6</oid>
</senseTemp>
</fields>
</interface>
Code: Select all
snmpwalk -v 2c -On -m ALL -c xxxxx w.x.y.z .1.3.6.1.4.1.17373.3.1.8.1.4
.1.3.6.1.4.1.17373.3.1.8.1.4.0 = INTEGER: 2
Code: Select all
snmpwalk -v 2c -On -m ALL -c xxxxx w.x.y.z .1.3.6.1.4.1.17373.3.4
.1.3.6.1.4.1.17373.3.4.1.2.1 = STRING: "9E0000041F32CF28"
.1.3.6.1.4.1.17373.3.4.1.2.2 = STRING: "A50000041F1F1A28"
.1.3.6.1.4.1.17373.3.4.1.3.1 = STRING: "Sensor1"
.1.3.6.1.4.1.17373.3.4.1.3.2 = STRING: "Sensor2"
.1.3.6.1.4.1.17373.3.4.1.4.1 = Gauge32: 1
.1.3.6.1.4.1.17373.3.4.1.4.2 = Gauge32: 1
.1.3.6.1.4.1.17373.3.4.1.5.1 = INTEGER: 16
.1.3.6.1.4.1.17373.3.4.1.5.2 = INTEGER: 29
.1.3.6.1.4.1.17373.3.4.1.6.1 = INTEGER: 61
.1.3.6.1.4.1.17373.3.4.1.6.2 = INTEGER: 84
Code: Select all
+ Running data query [10].
+ Found type = '3' [snmp query].
+ Found data query XML file at '/cacti/resource/snmp_queries/itwd-temps.xml'
+ XML file parsed ok.
+ Executing SNMP walk for list of indexes @ '.1.3.6.1.4.1.17373.3.4'
+ Index found at OID: '1.3.6.1.4.1.17373.3.4.1.2.1' value: '9E0000041F32CF28'
+ Index found at OID: '1.3.6.1.4.1.17373.3.4.1.2.2' value: 'A50000041F1F1A28'
+ Index found at OID: '1.3.6.1.4.1.17373.3.4.1.3.1' value: 'Sensor1'
+ Index found at OID: '1.3.6.1.4.1.17373.3.4.1.3.2' value: 'Sensor2'
+ Index found at OID: '1.3.6.1.4.1.17373.3.4.1.4.1' value: '1'
+ Index found at OID: '1.3.6.1.4.1.17373.3.4.1.4.2' value: '1'
+ Index found at OID: '1.3.6.1.4.1.17373.3.4.1.5.1' value: '16'
+ Index found at OID: '1.3.6.1.4.1.17373.3.4.1.5.2' value: '29'
+ Index found at OID: '1.3.6.1.4.1.17373.3.4.1.6.1' value: '61'
+ Index found at OID: '1.3.6.1.4.1.17373.3.4.1.6.2' value: '84'
+ Located input field 'senseDescr' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.17373.3.4.1.2'
+ Located input field 'senseName' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.17373.3.4.1.3'
+ Located input field 'senseTemp' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.17373.3.4.1.6'
+ Found data query XML file at '/cacti/resource/snmp_queries/itwd-temps.xml'
+ Found data query XML file at '/cacti/resource/snmp_queries/itwd-temps.xml'
+ Found data query XML file at '/cacti/resource/snmp_queries/itwd-temps.xml'
Any thoughts as to why its not getting the data?
Thank you =)