kentik / snmp-profiles

SNMP Profiles for ktranslate
Apache License 2.0
24 stars 63 forks source link

ktranslate can't pull Velocloud MIBs #724

Closed Mamoon-Khan closed 9 months ago

Mamoon-Khan commented 9 months ago

Hi Team,

Couple week ago we updated the Velocloud SNMP profile (velocloud-edge.yml) with new MIBs and using it for our infrastructure. out of those new MIBs Ktranslate is not pulling 3 MIBs. Can you please look into this and guide us further. MIBs list is as below.

metric_tags:

Thanks

thezackm commented 9 months ago

there's nothing in the YAML that looks off from a glance; can you confirm your device responds to these particular OIDs via an snmpwalk command?

Additionally, remember that metric_tags are decorations on other metrics. Meaning that they are queried as a facet to one of your dimensional metrics.

FROM Metric SELECT
  latest(vceLinkState) AS 'Current State' -- Note enumerated metrics have their string values as a decoration too
  ,latest(kentik.snmp.vceLinkTxLatency) AS 'TX Latency'
  ,latest(kentik.snmp.vceLinkRxLatency) AS 'RX Latency'
FACET
  device_name
  ,vceLinkItf
  ,vceLinkName
  ,vcePathPeerName
SINCE 1 HOUR AGO
LIMIT 100
Mamoon-Khan commented 9 months ago

Hi Team,

Thanks for the information, this help us lot to resolve our issue.

Regards Mamoon Ahmed

thezackm commented 9 months ago

happy to help; thanks!