Revision: 14930
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at June 17, 2009 15:01 by rowntreerob
Initial Code
sed 's/^\[.*\] //' /var/log/httpd/error_log | awk -F\: ' { print $1 } ' | grep -v ^script | sort | uniq -c sed 's/^\[.*\] //' /var/log/httpd/error_log | sort | uniq -c | sort -k1 -nr | head -50
Initial URL
Initial Description
drop the prefix fields and sort , profile by type
Initial Title
apache error log - profile php errors by type
Initial Tags
php, apache
Initial Language
Bash