]> arthur.barton.de Git - netdata.git/blob - plugins.d/fping.plugin
changes after https://github.com/schweikert/fping/pull/105 being merged into fping...
[netdata.git] / plugins.d / fping.plugin
1 #!/usr/bin/env bash
2
3 # netdata
4 # real-time performance and health monitoring, done right!
5 # (C) 2016 Costa Tsaousis <costa@tsaousis.gr>
6 # GPL v3+
7 #
8 # This plugin requires a latest version of fping.
9 # You can compile it from source, by running me with option: install
10
11 export PATH="${PATH}:/sbin:/usr/sbin:/usr/local/sbin"
12 export LC_ALL=C
13
14 if [ "${1}" = "install" ]
15     then
16     [ "${UID}" != 0 ] && echo >&2 "Please run me as root. This will install a single binary file: /usr/local/bin/fping." && exit 1
17
18     run() {
19         printf >&2 " > "
20         printf >&2 "%q " "${@}"
21         printf >&2 "\n"
22         "${@}" || exit 1
23     }
24
25     [ ! -d /usr/src ] && run mkdir -p /usr/src
26     [ ! -d /usr/local/bin ] && run mkdir -p /usr/local/bin
27
28     run cd /usr/src
29
30     if [ -d fping.git ]
31         then
32         run cd fping.git
33         run git pull
34     else
35         run git clone https://github.com/schweikert/fping.git fping.git
36         run cd fping.git
37     fi
38
39     run ./autogen.sh
40     run ./configure --prefix=/usr/local
41     run make clean
42     run make
43     if [ -f /usr/local/bin/fping ]
44         then
45         run mv -f /usr/local/bin/fping /usr/local/bin/fping.old
46     fi
47     run mv src/fping /usr/local/bin/fping
48     run chown root:root /usr/local/bin/fping
49     run chmod 4755 /usr/local/bin/fping
50     echo >&2
51     echo >&2 "All done, you have a compatible fping now at /usr/local/bin/fping."
52     echo >&2
53     echo >&2 "If you have another fping installed, please set:"
54     echo >&2 "  fping=\"/usr/local/bin/fping\""
55     echo >&2 "at /etc/netdata/fping.conf"
56     exit 0
57 fi
58
59 # -----------------------------------------------------------------------------
60
61 PROGRAM_NAME="$(basename "${0}")"
62
63 logdate() {
64     date "+%Y-%m-%d %H:%M:%S"
65 }
66
67 log() {
68     local status="${1}"
69     shift
70
71     echo >&2 "$(logdate): ${PROGRAM_NAME}: ${status}: ${*}"
72
73 }
74
75 warning() {
76     log WARNING "${@}"
77 }
78
79 error() {
80     log ERROR "${@}"
81 }
82
83 info() {
84     log INFO "${@}"
85 }
86
87 fatal() {
88     log FATAL "${@}"
89         echo "DISABLE"
90     exit 1
91 }
92
93 debug=0
94 debug() {
95     [ $debug -eq 1 ] && log DEBUG "${@}"
96 }
97
98 # -----------------------------------------------------------------------------
99
100 # the frequency to send info to netdata
101 # passed by netdata as the first parameter
102 update_every="${1-1}"
103
104 # the netdata configuration directory
105 # passed by netdata as an environment variable
106 NETDATA_CONFIG_DIR="${NETDATA_CONFIG_DIR-/etc/netdata}"
107
108 # -----------------------------------------------------------------------------
109 # configuration options
110 # can be overwritten at /etc/netdata/fping.conf
111
112 # the fping binary to use
113 # we need one that can output netdata friendly info (supporting: -N)
114 # if you have multiple versions, put here the full filename of the right one
115 fping="$( which fping 2>/dev/null || command -v fping 2>/dev/null )"
116
117 # a space separated list of hosts to fping
118 # we suggest to put names here and the IPs of these names in /etc/hosts
119 hosts=""
120
121 # the time in milliseconds (1 sec = 1000 ms)
122 # to ping the hosts - by default 5 pings per host per iteration
123 ping_every="$((update_every * 1000 / 5))"
124
125 # fping options
126 fping_opts="-R -b 56 -i 1 -r 0 -t 5000"
127
128 # -----------------------------------------------------------------------------
129 # load the configuration file
130
131 if [ ! -f "${NETDATA_CONFIG_DIR}/fping.conf" ]
132 then
133         fatal "configuration file '${NETDATA_CONFIG_DIR}/fping.conf' not found - nothing to do."
134 fi
135
136 source "${NETDATA_CONFIG_DIR}/fping.conf"
137
138 if [ -z "${hosts}" ]
139 then
140         fatal "no hosts configued in '${NETDATA_CONFIG_DIR}/fping.conf' - nothing to do."
141 fi
142
143 if [ -z "${fping}" -o ! -x "${fping}" ]
144 then
145         fatal "command '${fping}' is not executable - cannot proceed."
146 fi
147
148 if [ ${ping_every} -lt 20 ]
149     then
150     warning "ping every was set to ${ping_every} but 20 is the minimum for non-root users. Setting it to 20 ms."
151     ping_every=20
152 fi
153
154 # the fping options we will use
155 options=( -N -l -Q ${update_every} -p ${ping_every} ${other_opts} ${hosts} )
156
157 # execute fping
158 exec "${fping}" "${options[@]}"
159
160 # if we cannot execute fping, stop
161 fatal "command '${fping} ${options[@]}' failed to be executed."