Skip to content

Commit

Permalink
- Add script to hackily check for progress on a long import.
Browse files Browse the repository at this point in the history
  • Loading branch information
jordansissel committed Oct 31, 2010
1 parent 8462bd0 commit 97d71ed
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions misc/rate.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/zsh

if [ "$#" -ne 1 ] ; then
echo "Usage; $0 logfile"
exit 1
fi
logfile="$1"

pid=$(ps -u $USER -f | awk '/bin.logstash -[f]/ {print $2}')
fileno=$(lsof -nPp $pid | grep -F "$logfile" | awk '{ print int($4) }')
pos=$(awk '/pos:/ {print $2}' /proc/$pid/fdinfo/$fileno)
starttime=$(awk '{print $22}' /proc/$pid/stat)
curtime=$(awk '{print $1}' /proc/uptime)
lines=$(dd if="$logfile" bs=$pos count=1 | wc -l)

duration=$(($curtime - ($starttime / 100.)))
rate=$(( $lines / (0.0 + $duration) ))

echo "Duration: $duration"
echo "Rate: $rate"

0 comments on commit 97d71ed

Please sign in to comment.