Discussion:
[influxdb] Influx/Telegraf & F5/BigIP
Paul Seymour
2016-08-24 14:54:11 UTC
Permalink
Hello,

Has anyone used telegraf (or CollectD) to pull information from F5's and
put into Influx ?

Not sure on how to go about it - presume SNMP but not sure where to start
with configuration.

Any pointers/help/examples would be very gratefully received.

Thanks
Paul
--
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+***@googlegroups.com.
To post to this group, send email to ***@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/ee6c0361-2c56-400b-9d7c-ca2f54295161%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
t***@flightnetwork.com
2018-03-21 00:56:45 UTC
Permalink
Post by Paul Seymour
Hello,
Has anyone used telegraf (or CollectD) to pull information from F5's and put into Influx ?
Not sure on how to go about it - presume SNMP but not sure where to start with configuration.
Any pointers/help/examples would be very gratefully received.
Thanks
Paul
Did you happen to figure this out, Paul?

Looking for the same thing, not sure where to start.
--
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 influxdb+***@googlegroups.com.
To post to this group, send email to ***@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/a8bad042-2837-4fb0-9f69-da9581c4dbd1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
s***@amientertainment.com
2018-03-28 21:20:57 UTC
Permalink
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 influxdb+***@googlegroups.com.
To post to this group, send email to ***@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/4c28d51c-e9f7-48be-9291-a83bc3cc7cd8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...