bundlewrap/bundles/telegraf
2024-11-23 09:52:48 +01:00
..
items.py dhcp from interface 2024-11-23 09:52:48 +01:00
metadata.py comment 2024-06-23 13:17:44 +02: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