We just migrated from collectd to telegraf.  Here's the config I'm using:

## First copy mibs from the BigIP (located in /usr/share/snmp/mibs/F5* ) to 
local snmp mibs directory on monitoring host (same directory on CentOS 7)


[[inputs.snmp]]
  agents = [ "192.168.1.6" ]
  version = 2
  community = "tacocat"
  interval = "60s"
  timeout = "10s"
  retries = 3


  [[inputs.snmp.field]]
    name = "hostname"
    oid = "RFC1213-MIB::sysName.0"
    is_tag = true

  [[inputs.snmp.table]]
    name = "F5_PoolStatus"
    oid = "F5-BIGIP-LOCAL-MIB::ltmPoolStatTable"
    inherit_tags = [ "hostname" ]

  [[inputs.snmp.table]]
    name = "F5_ClientSSLStatus"
    oid = "F5-BIGIP-LOCAL-MIB::ltmClientSslStatTable"
    inherit_tags = [ "hostname" ]

  [[inputs.snmp.table]]
    name = "F5_CPU"
    oid =  "F5-BIGIP-SYSTEM-MIB::sysCpuTable"
    inherit_tags = [ "hostname" ]

  [[inputs.snmp.table]]
    name = "F5_Fan"
    oid =  "F5-BIGIP-SYSTEM-MIB::sysChassisFanTable"
    inherit_tags = [ "hostname" ]

  [[inputs.snmp.table]]
    name = "F5_Temperature"
    oid =  "F5-BIGIP-SYSTEM-MIB::sysChassisTempTable"
    inherit_tags = [ "hostname" ]

-- 
Remember to include the version number!
--- 
You received this message because you are subscribed to the Google Groups 
"InfluxData" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
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/4c28d51c-e9f7-48be-9291-a83bc3cc7cd8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to