Hello, how are you?
Below is more detailed information about the cron that is being created automatically:y:
Task name: [Do not delete] Resource Manager - Get Process Traffic
Execute cycle: tarting at minute 0 of each hour and executed every 5 minutes
Execute user: root
Script content:
ps -ef | grep nethogs | grep -v grep | awk '{print $2}' | xargs kill 2>/dev/null
count=0
while [ $count -lt 2 ]
do
count=$(($count+1))
/usr/sbin/nethogs -t -a -d 2 -c 5 > /www/server/panel/class/monitorModel/data/process_flow.log 2>/dev/null
if [[ $count == 2 ]];then
break
else
sleep 20
fi
done
Any idea why this cron job is happening? Is it something in the aapanel?