mirror of
https://github.com/munin-monitoring/muninlite.git
synced 2024-11-10 21:26:33 +01:00
44d1c8dc3a
ethtool prints the error message "Cannot get device settings: No such device" for VLAN devices. This error message should not be exposed via the munin protocol.
31 lines
1.5 KiB
Plaintext
31 lines
1.5 KiB
Plaintext
config_if() {
|
|
INTERFACE=$1
|
|
echo "graph_order down up"
|
|
echo "graph_title $INTERFACE traffic"
|
|
echo "graph_args --base 1000"
|
|
echo "graph_vlabel bits in (-) / out (+) per \${graph_period}"
|
|
echo "graph_category network"
|
|
echo "graph_info This graph shows the traffic of the $INTERFACE network interface. Please note that the traffic is shown in bits per second, not bytes. IMPORTANT: Since the data source for this plugin use 32bit counters, this plugin is really unreliable and unsuitable for most 100Mb (or faster) interfaces, where bursts are expected to exceed 50Mbps. This means that this plugin is usuitable for most production environments. To avoid this problem, use the ip_ plugin instead."
|
|
echo "down.label received"
|
|
echo "down.type DERIVE"
|
|
echo "down.min 0"
|
|
echo "down.graph no"
|
|
echo "down.cdef down,8,*"
|
|
echo "up.label bps"
|
|
echo "up.type DERIVE"
|
|
echo "up.min 0"
|
|
echo "up.negative down"
|
|
echo "up.cdef up,8,*"
|
|
if [ -n "$(which ethtool)" ] && [ -x "$(which ethtool)" ] && ethtool "$INTERFACE" 2>/dev/null | grep -q Speed; then
|
|
MAX=$(($(ethtool "$INTERFACE" | grep Speed | sed -e 's/[[:space:]]\{1,\}/ /g' -e 's/^ //' -e 's/M.*//' | cut -d " " -f 2) * 1000000))
|
|
echo "up.max $MAX"
|
|
echo "down.max $MAX"
|
|
fi
|
|
}
|
|
fetch_if() {
|
|
INTERFACE=$1
|
|
IINFO=$(grep "^ *$INTERFACE:" /proc/net/dev | cut -d ":" -f 2 | sed -e 's/ */ /g' -e 's/^[ \t]*//')
|
|
echo "down.value" "$(echo "$IINFO" | cut -d " " -f 1)"
|
|
echo "up.value" "$(echo "$IINFO" | cut -d " " -f 9)"
|
|
}
|