Google App Engine HTTP 日志中的所有列是什么?

发布于 2024-11-06 04:58:30 字数 1377 浏览 1 评论 0原文

Google App Engine HTTP 日志中的所有数据有何含义?例如,在以下(匿名)日志中:

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)版本/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

我理解大部分列,你能帮忙填写第2列和第14列吗?

  1. IP 地址:107.10.42.191
  2. 只是一个连字符,还是更多?:-
  3. 登录用户:foobiz
  4. 请求时间:[10/May/2011:17:26:28 -0700]
  5. HTTP 请求:“ GET /page.html HTTP/1.1"
  6. HTTP 响应状态代码:500
  7. HTTP 响应大小(以字节为单位):2297
  8. 引用页面:"http://www.example.com/home.html"
  9. 浏览器信息:"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/533.19.4 (KHTML,像 Gecko)版本/5.0.3 Safari/533.19.4,gzip(gfe),gzip(gfe),gzip(gfe)"
  10. 主机:"www.example.com"
  11. 总时间:ms=364
  12. CPU 时间:cpu_ms=23
  13. API 时间:api_cpu_ms=0
  14. 这是什么?:cpm_usd=0.001059

我知道有一个 关于SO的类似问题,但它似乎已经过时并且没有得到真正的回答。

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?

  1. IP Address: 107.10.42.191
  2. Just a hyphen, or something more?: -
  3. Logged in user: foobiz
  4. Request Time: [10/May/2011:17:26:28 -0700]
  5. HTTP Request: "GET /page.html HTTP/1.1"
  6. HTTP Response Status Code: 500
  7. HTTP Response Size in Bytes: 2297
  8. Referring Page: "http://www.example.com/home.html"
  9. Browser Info: "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)"
  10. Host: "www.example.com"
  11. Total Time: ms=364
  12. CPU Time: cpu_ms=23
  13. API Time: api_cpu_ms=0
  14. What is this?: cpm_usd=0.001059

I know there is a similar question on SO, but it seems outdated and wasn't really answered.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独﹏钓一江月 2024-11-13 04:58:30

日志采用 Apache 组合日志格式,以及一些附加字段。这些字段按顺序为:

  1. 客户端的 IP 地址 (107.10.42.191)
  2. 客户端的 RFC1413 身份(实际上,始终为“-”)
  3. 由 HTTP 身份验证确定的用户 ID ('foobiz')
  4. 请求的时间戳 ('[ 10/May/2011:17:26:28 -0700]')
  5. 请求的第一行,包含请求方法、路径和 HTTP 协议版本 ("GET /page.html HTTP/1.1")
  6. 返回的状态码服务器 (500)
  7. 响应的字节大小 (2297)
  8. 引用路径 ("http://www .example.com/home.html")
  9. 用户代理 ("Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/533.19.4 (KHTML, 如 Gecko) 版本/5.0.3 Safari/533.19.4,gzip(gfe),gzip(gfe),gzip(gfe)")
  10. 主机名
  11. 完成请求所需的 wallclock 毫秒
  12. 完成请求所需的 CPU 毫秒
  13. API 花费的 CPU 毫秒调用
  14. 1000 个此类请求的成本估算(以美元为单位)。

Logs are in Apache Combined Log Format, with some additional fields. The fields, in order, are:

  1. Client's IP address (107.10.42.191)
  2. The RFC1413 identity of the client (in practice, always '-')
  3. The userid determined by HTTP authentication ('foobiz')
  4. The timestamp of the request ('[10/May/2011:17:26:28 -0700]')
  5. The first line of the request, containing request method, path, and HTTP protocol version ("GET /page.html HTTP/1.1")
  6. The status code returned by the server (500)
  7. The size in bytes of the response (2297)
  8. The referer path ("http://www.example.com/home.html")
  9. The user-agent ("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)")
  10. The hostname
  11. The wallclock milliseconds required to fulfill the request
  12. The CPU milliseconds required to fulfill the request
  13. The CPU milliseconds spent by API calls
  14. An estimate of the cost of 1000 requests like this, in USD.
烟燃烟灭 2024-11-13 04:58:30

这个问题已在这里得到解答:GAE/J 请求日志格式细分

cpm_usd 是1000 个类似请求的估计费用(以美元计算)。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文