logging - What are All the Columns in a Google App Engine HTTP Log? -
what of data in google app engine http log mean? example, in 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, 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 of columns, can fill in columns 2 , 14?
- ip address: 107.10.42.191
- just hyphen, or more?: -
- logged in user: foobiz
- request time: [10/may/2011:17:26:28 -0700]
- http request: "get /page.html http/1.1"
- http response status code: 500
- http response size in bytes: 2297
- referring page: "http://www.example.com/home.html"
- browser info: "mozilla/5.0 (macintosh; u; intel mac os x 10_5_8; en-us) applewebkit/533.19.4 (khtml, gecko) version/5.0.3 safari/533.19.4,gzip(gfe),gzip(gfe),gzip(gfe)"
- host: "www.example.com"
- total time: ms=364
- cpu time: cpu_ms=23
- api time: api_cpu_ms=0
- what this?: cpm_usd=0.001059
i know there similar question on so, seems outdated , wasn't answered.
logs in apache combined log format, additional fields. fields, in order, are:
- client's ip address (107.10.42.191)
- the rfc1413 identity of client (in practice, '-')
- the userid determined http authentication ('foobiz')
- the timestamp of request ('[10/may/2011:17:26:28 -0700]')
- the first line of request, containing request method, path, , http protocol version ("get /page.html http/1.1")
- the status code returned server (500)
- the size in bytes of response (2297)
- the referer path ("http://www.example.com/home.html")
- the user-agent ("mozilla/5.0 (macintosh; u; intel mac os x 10_5_8; en-us) applewebkit/533.19.4 (khtml, gecko) version/5.0.3 safari/533.19.4,gzip(gfe),gzip(gfe),gzip(gfe)")
- the hostname
- the wallclock milliseconds required fulfill request
- the cpu milliseconds required fulfill request
- the cpu milliseconds spent api calls
- an estimate of cost of 1000 requests this, in usd.
Comments
Post a Comment