bundlewrap/bundles/telegraf
2022-01-08 23:26:21 +01:00
..
items.py change telegraf plugin dir 2022-01-08 23:26:21 +01:00
metadata.py change telegraf plugin dir 2022-01-08 23:26:21 +01:00
README.md wip 2021-11-05 21:45:23 +01:00

setfacl -Rm g:telegraf:rX /var/spool/postfix/
setfacl -dm g:telegraf:rX /var/spool/postfix/

TODO io

for pid in $(ls /proc | grep '^[0-9]\+$')
do
  out=$(cat /proc/$pid/io 2> /dev/null) || continue
  read="$(echo $out | grep '^read_bytes:' | cut -d' ' -f2)"
  write="$(echo $out | grep '^write_bytes:' | cut -d' ' -f2)"
  [ $read = 0 ] && [ $write = 0 ] && continue
  comm=$(cat /proc/$pid/comm); echo "$comm: $read/$write"
done