sql - Want to process a large appengine log file -
i run app on google app engine.....my log files huge due heavy traffic log file looks this
122.167.221.243 - - [06/mar/2012:01:11:29 -0800] "get /bengali/enable http/1.1" 404 0 "http://www.epicsearch.in/" - ---similar rows ---- below
i want process them meaningful stats such no. of unique ip addresses or no. of hits on given page.... beginner not know how go it!!!!!
assuming haven't done so, first thing you'll want download app engine logs using appcfg.py
utility, example:
appcfg.py --num_days=5 request_logs appname/ logs.txt
after download it, have throw script or program parse logs whatever information you deem useful.
this stack overflow question might place start -- decent scripting language should able adequately parse logs you.
Comments
Post a Comment