blob: e9253c8f256e45b25edf4c67d86cd5d06e2806cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
#!/usr/bin/env bash
# netdata
# real-time performance and health monitoring, done right!
# (C) 2016 Costa Tsaousis <costa@tsaousis.gr>
# GPL v3+
#
# This script is a helper to allow netdata collect tc data.
# tc output parsing has been implemented in C, inside netdata
# This script allows setting names to dimensions.
export PATH="${PATH}:/sbin:/usr/sbin:/usr/local/sbin"
export LC_ALL=C
PROGRAM_FILE="$0"
PROGRAM_NAME="$(basename $0)"
PROGRAM_NAME="${PROGRAM_NAME/.plugin}"
# -----------------------------------------------------------------------------
logdate() {
date "+%Y-%m-%d %H:%M:%S"
}
log() {
local status="${1}"
shift
echo >&2 "$(logdate): ${PROGRAM_NAME}: ${status}: ${*}"
}
warning() {
log WARNING "${@}"
}
error() {
log ERROR "${@}"
}
info() {
log INFO "${@}"
}
fatal() {
log FATAL "${@}"
exit 1
}
debug=0
debug() {
[ $debug -eq 1 ] && log DEBUG "${@}"
}
# -----------------------------------------------------------------------------
plugins_dir="${NETDATA_PLUGINS_DIR}"
[ -z "$plugins_dir" ] && plugins_dir="$( dirname $PROGRAM_FILE )"
config_dir=${NETDATA_CONFIG_DIR-/etc/netdata}
tc="$(which tc 2>/dev/null || command -v tc 2>/dev/null)"
fireqos_run_dir="/var/run/fireqos"
qos_get_class_names_every=120
qos_exit_every=3600
# check if we have a valid number for interval
t=${1}
update_every=$((t))
[ $((update_every)) -lt 1 ] && update_every=${NETDATA_UPDATE_EVERY}
[ $((update_every)) -lt 1 ] && update_every=1
# allow the user to override our defaults
if [ -f "${config_dir}/tc-qos-helper.conf" ]
then
source "${config_dir}/tc-qos-helper.conf"
fi
# default sleep function
LOOPSLEEPMS_LASTWORK=0
loopsleepms() {
sleep $1
}
# if found and included, this file overwrites loopsleepms()
# with a high resolution timer function for precise looping.
. "${plugins_dir}/loopsleepms.sh.inc"
if [ -z "${tc}" -o ! -x "${tc}" ]
then
fatal "cannot find command 'tc' in this system."
fi
tc_devices=
fix_names=
setclassname() {
echo "SETCLASSNAME $3 $2"
}
show_tc_cls() {
local x="${1}"
if [ -f /etc/iproute2/tc_cls ]
then
local classid name rest
while read classid name rest
do
[ -z "${classid}" -o -z "${name}" -o "${classid}" = "#" -o "${name}" = "#" -o "${classid:0:1}" = "#" -o "${name:0:1}" = "#" ] && continue
setclassname "" "${name}" "${classid}"
done </etc/iproute2/tc_cls
return 0
fi
return 1
}
show_fireqos_names() {
local x="${1}" name n interface_dev interface_classes interface_classes_monitor
if [ -f "${fireqos_run_dir}/ifaces/${x}" ]
then
name="$(<"${fireqos_run_dir}/ifaces/${x}")"
echo "SETDEVICENAME ${name}"
interface_dev=
interface_classes=
interface_classes_monitor=
source "${fireqos_run_dir}/${name}.conf"
for n in ${interface_classes_monitor}
do
setclassname ${n//|/ }
done
[ ! -z "${interface_dev}" ] && echo "SETDEVICEGROUP ${interface_dev}"
return 0
fi
return 1
}
show_tc() {
local x="${1}"
echo "BEGIN ${x}"
# netdata can parse the output of tc
${tc} -s class show dev ${x}
# check FireQOS names for classes
if [ ! -z "${fix_names}" ]
then
show_fireqos_names "${x}" || show_tc_cls "${x}"
fi
echo "END ${x}"
}
find_tc_devices() {
local count=0 devs= dev rest l
# find all the devices in the system
# without forking
while IFS=":| " read dev rest
do
count=$((count + 1))
[ ${count} -le 2 ] && continue
devs="${devs} ${dev}"
done </proc/net/dev
# from all the devices find the ones
# that have QoS defined
# unfortunately, one fork per device cannot be avoided
tc_devices=
for dev in ${devs}
do
l="$(${tc} class show dev ${dev} 2>/dev/null)"
[ ! -z "${l}" ] && tc_devices="${tc_devices} ${dev}"
done
}
# update devices and class names
# once every 2 minutes
names_every=$((qos_get_class_names_every / update_every))
# exit this script every hour
# it will be restarted automatically
exit_after=$((qos_exit_every / update_every))
c=0
gc=0
while [ 1 ]
do
fix_names=
c=$((c + 1))
gc=$((gc + 1))
if [ ${c} -le 1 -o ${c} -ge ${names_every} ]
then
c=1
fix_names="YES"
find_tc_devices
fi
for d in ${tc_devices}
do
show_tc ${d}
done
echo "WORKTIME ${LOOPSLEEPMS_LASTWORK}"
loopsleepms ${update_every}
[ ${gc} -gt ${exit_after} ] && exit 0
done
|