Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. init_config:
  2. # #You can specify an additional folder for your custom mib files (python format)
  3. mibs_folder: /home/aaliu/datadog/snmp/mibs
  4. # ignore_nonincreasing_oid: False
  5.  
  6. instances:
  7.  
  8. # SNMP v1-v2 configuration
  9. #
  10. - ip_address: dbalabap01.man.lab
  11. port: 161
  12. community_string: public
  13. snmp_version: 2 # Only required for snmp v1, will default to 2
  14. timeout: 1 # second, by default
  15. retries: 5
  16. tags:
  17. - oracleebs
  18. - oraclesoa
  19.  
  20. # # Specify metrics you want to monitor
  21. metrics:
  22. # # You can specify metrics using MIBS (Counter and Gauge)
  23. - MIB: UDP-MIB
  24. symbol: udpInDatagrams
  25. - MIB: TCP-MIB
  26. symbol: tcpActiveOpens
  27. - MIB: omstrap
  28. symbol:
  29. # # If it's just a scalar, you can specify by OID and name it
  30. # - OID: 1.3.6.1.2.1.6.5
  31. # name: tcpPassiveOpens
  32. #
  33. # # You can also query a table and specify
  34. # # - which columns to report as value (symbols)
  35. # # - which columns / indexes to use as tags (metric_tags)
  36. # - MIB: IF-MIB
  37. # table: ifTable
  38. # symbols:
  39. # - ifInOctets
  40. # - ifOutOctets
  41. # metric_tags:
  42. # - tag: interface
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement