Skip to content

Commit

Permalink
Initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
Atoptool committed Sep 5, 2011
0 parents commit fb9ed3f
Show file tree
Hide file tree
Showing 39 changed files with 23,550 additions and 0 deletions.
73 changes: 73 additions & 0 deletions 45atoppm
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
#!/bin/sh

. "${PM_FUNCTIONS}"

LOGPATH=/var/log/atop
BINPATH=/usr/bin
PIDFILE=/var/run/atop.pid
INTERVAL=600 # interval 10 minutes
CURDAY=`date +%Y%m%d` # current date in same format

# If the system suspends, one final sample will be taken for the logfile
#
suspend_atop()
{
if [ -e $PIDFILE ] && ps -p `cat $PIDFILE` | grep 'atop$' > /dev/null
then
kill -USR2 `cat $PIDFILE` # final sample and terminate

CNT=0

while ps -p `cat $PIDFILE` > /dev/null
do
let CNT+=1

if [ $CNT -gt 5 ]
then
break;
fi

sleep 1
done
fi
}

# If the system resumes, a new atop will be started (similar to boot)
#
resume_atop()
{
# in case atop is running, stop it
#
if [ -e $PIDFILE ] && ps -p `cat $PIDFILE` | grep 'atop$' > /dev/null
then
kill -TERM `cat $PIDFILE`
rm $PIDFILE
sleep 1
fi

# start atop
#
$BINPATH/atop -a -w $LOGPATH/atop_$CURDAY $INTERVAL \
> $LOGPATH/daily.log 2>&1 &
echo $! > $PIDFILE

# delete logfiles older than four weeks
#
(
sleep 3;
find $LOGPATH -name 'atop_*' -mtime +28 -exec rm {} \;
)&

exit 0
}

case "$1" in
hibernate|suspend)
suspend_atop
;;
thaw|resume)
resume_atop
;;
*) exit $NA
;;
esac
1 change: 1 addition & 0 deletions AUTHOR
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Gerlof Langeveld <[email protected]>
340 changes: 340 additions & 0 deletions COPYING

Large diffs are not rendered by default.

Loading

0 comments on commit fb9ed3f

Please sign in to comment.