fping.conf 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # no need for shebang - this file is sourced from fping.plugin
  2. # fping.plugin requires a recent version of fping.
  3. #
  4. # You can get it on your system, by running:
  5. #
  6. # /usr/libexec/netdata/plugins.d/fping.plugin install
  7. # -----------------------------------------------------------------------------
  8. # configuration options
  9. # The fping binary to use. We need one that can output netdata friendly info
  10. # (supporting: -N). If you have multiple versions, put here the full filename
  11. # of the right one
  12. #fping="/usr/local/bin/fping"
  13. # a space separated list of hosts to fping
  14. # we suggest to put names here and the IPs of these names in /etc/hosts
  15. hosts=""
  16. # The update frequency of the chart - the default is inherited from netdata
  17. #update_every=2
  18. # The time in milliseconds (1 sec = 1000 ms) to ping the hosts
  19. # by default 5 pings per host per iteration
  20. # fping will not allow this to be below 20ms
  21. #ping_every="200"
  22. # other fping options - defaults:
  23. # -R = send packets with random data
  24. # -b 56 = the number of bytes per packet
  25. # -i 1 = 1 ms when sending packets to others hosts (switching hosts)
  26. # -r 0 = never retry packets
  27. # -t 5000 = per packet timeout at 5000 ms
  28. #fping_opts="-R -b 56 -i 1 -r 0 -t 5000"