The combination of include_instances and mapping_table are used to narrow down 
the OID values that are retrieved.
In your configuration you are using a mapping_table without any 
include_instances setting to apply on it, so nothing will be retrieved.
You may not want to narrow down the OID's to retrieve at this point so I am 
skipping this step.

[[inputs.snmp.host.table]] states that a table OID will be retrieved from a host
[[inputs.snmp.table]] defines a table's OID

So if ".1.3.6.1.4.1.3375.2.2.5.6.2.1.9" is a table (which looks like it: 
http://www.oid-info.com/cgi-bin/display?oid=1.3.6.1.4.1.3375.2.2.5.6.2.1.9&action=display
 ) here is a configuration example on how to retrieve it:
    
    [[inputs.snmp]]
      interval = "10s"

      [[inputs.snmp.host]]
        address = "10.0.99.99:161"
        community = "public"
        version = 2 # default 2

        [[inputs.snmp.host.table]]
          name = "poolMbrStatus"

      [[inputs.snmp.table]]
        name = "poolMbrStatus"
        oid = ".1.3.6.1.4.1.3375.2.2.5.6.2.1.9"

Hope this helps clear things a bit. Please note that the SNMP plugin might be 
subject to changes in the future.


On Tuesday, June 14, 2016 at 4:42:04 PM UTC+3, patrick...@gmail.com wrote:
> > Hi Patrick,
> > 
> > I understand that you are aiming to combine data from multiple OID's in the 
> > form of tags and fields for the same measurement.
> 
> While that would be nice, I'd settle for getting this working at all.
> 
> > 
> > This functionality has not yet been implemented for the SNMP input plugin.
> > 
> > There are two GH issues describing and requesting this as a new feature: 
> > https://github.com/influxdata/telegraf/issues/808
> > https://github.com/influxdata/telegraf/issues/1371
> > 
> > The SNMP plugin was contributed by the community. We are currently 
> > investigating ways to further improve it. It is very likely that we will 
> > include these improvements in our roadmap soon. Until then,I suggest 
> > posting your comments and requests in the related GH issues.
> > 
> > Thanks,
> > Kostas Botsas
> > Support Engineer

-- 
Remember to include the InfluxDB version number with all issue reports
--- 
You received this message because you are subscribed to the Google Groups 
"InfluxDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to influxdb+unsubscr...@googlegroups.com.
To post to this group, send email to influxdb@googlegroups.com.
Visit this group at https://groups.google.com/group/influxdb.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/influxdb/46bd2096-840d-4ddb-bf4c-fbe2a0fc03bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to