Reputation: 16141
What does all of the data in a Google App Engine HTTP log mean? For example, in the following (anonymised) log:
107.10.42.191 - foobiz [10/May/2011:17:26:28 -0700] "GET /page.html HTTP/1.1" 500 2297 "http://www.example.com/home.html" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/5.0.3 Safari/533.19.4,gzip(gfe),gzip(gfe),gzip(gfe)" "www.example.com" ms=364 cpu_ms=23 api_cpu_ms=0 cpm_usd=0.001059
I understand most of the columns, can you help fill in columns 2 and 14?
I know there is a similar question on SO, but it seems outdated and wasn't really answered.
Upvotes: 4
Views: 947
Reputation: 101149
Logs are in Apache Combined Log Format, with some additional fields. The fields, in order, are:
Upvotes: 7
Reputation: 754
This question has been answered here: GAE/J request log format breakdown
cpm_usd is the estimated cost of 1000 similar requests in US dollars.
Upvotes: 2