tomcat访问(access)日志配置和记录Post请求参数
一、配置与说明
tomcat访问日志格式配置,在config/server.xml里host标签下加上
<valve classname="org.apache.catalina.valves.accesslogvalve" directory="logs" prefix="localhost_access_log." suffix=".txt" pattern="%h %l %u %t "%r" [%{postdata}r] %s %{referer}i %{user-agent}i %t %b" />
我们在日志文件中将看到如下文本:
10.217.14.16 - - [21/oct/2016:15:48:54 +0800] "post /updates/related_notice_num.json http/1.0" [channel=app store&gid=92391918-2173-4a66-8b31-b2fb3f8fb3df&os=2&plat=2&sver=10.000000&token=mzm1otc0mjq1mkb3zwliby55bxguy29tfhdlawjvfdq5zgfmmjk0yjq5ywqxmtzizjbmywm4zddhyzg3zwq0&ua=&ver=4.2.1] 200 - allapp/4.2.1 (iphone; ios 10.0.2; scale/3.00) 0.004 91
参数说明:
classname | 官方文档上说了:this must be set to org.apache.catalina.valves.accesslogvalve to use the default access log valve。 |
directory | 日志文件存放的目录。通常设置为tomcat下已有的那个logs文件。 |
prefix | 日志文件的名称前缀。 |
suffix | 日志文件的名称后缀。 |
pattern | 最主要的参数。下面会细讲。 |
resolvehosts | 如果是true,tomcat会将这个服务器ip地址通过dns转换为主机名;如果是false,就直接写服务器ip地址啦。默认false。 |
rotatable | 默认为true,tomcat生成的文件名为prefix(前缀)+.+时间(一般是按天算)+.+suffix(后缀),如:localhost_access_log.2007-09-22.txt。设置为false的话,tomcat会忽略时间,不会生成新文件,文件名就是:localhost_access_log.txt。长此以往,这个日志文件会超级大 |
condition | 这个参数不太实用,可设置任何值,比如设置成condition="tkq",那么只有当servletrequest.getattribute("tkq")为空的时候,该条日志才会被记录下来。 |
filedateformat |
顾名思义,就是时间格式嘛。但这个时间格式是针对日志文件名起作用的。咱们生成的日志文件全名:localhost_access_log.2016-09-22.txt,这里面的2016-09-22就是这么来的。如果想让tomcat每小时生成一个日志文件,也很简单,将这个值设置为:filedateformat="yyyy-mm-dd.hh",当然也可以按分钟生成什么的,自己改改吧^_^ |
下面着重讲下pattern。它的参数比较多。可以设置成common,combined两种格式。
- common的值:%h %l %u %t %r %s %b
- combined的值:%h %l %u %t %r %s %b %{referer}i %{user-agent}i (至于combined的值的最后两个为什么会这样,我也不太清楚)
%a 这是记录访问者的ip,在日志里是127.0.0.1 %a 这是记录本地服务器的ip,在日志里是192.168.254.108 %b 发送信息的字节数,不包括http头,如果字节数为0的话,显示为- %b 发送信息的字节数,不包括http头。 %h 服务器的名称。如果resolvehosts为false的话,这里就是ip地址了,例如我的日志里是10.217.14.16 %h 访问者的协议,这里是http/1.0 %l 官方解释:remote logical username from identd (可能这样翻译:记录浏览者进行身份验证时提供的名字)(always returns '-') %m 访问的方式,是get还是post %p 本地接收访问的端口 %q 比如你访问的是aaa.jsp?bbb=ccc,那么这里就显示?bbb=ccc,就是querystring的意思 %r first line of the request (method and request uri) 请求的方法和url %s http的响应状态码 %s 用户的session id,这个session id大家可以另外查一下详细的解释,反正每次都会生成不同的session id %t 请求时间 %u 得到了验证的访问者,否则就是"-" %u 访问的url地址,我这里是/rightmainima/leftbott4.swf %v 服务器名称,可能就是你url里面写的那个吧,我这里是localhost %d time taken to process the request,in millis,请求消耗的时间,以毫秒记 %t time taken to process the request,in seconds,请求消耗的时间,以秒记
附:参考官方文档:
二、配置打印post参数
另外%r参数能打印出请求的url和get参数。如果url指定访问方式是post,post的参数是打印不出来的。当需要打印post参数,该怎么办?
大家注意到我开篇举例valve配置里的%{postdata}r。没错,这个combined格式的patterrn可以实现。但是只在valve里配置这个东东还不够。因为postdata使我们自定义的参数名。需要在request中设置这个值。下面附上设置postdata到request中的代码。
package com.xiaoxiliu import java.io.ioexception; import java.util.enumeration; import javax.servlet.filter; import javax.servlet.filterchain; import javax.servlet.filterconfig; import javax.servlet.servletexception; import javax.servlet.servletrequest; import javax.servlet.servletresponse; import org.slf4j.logger; import org.slf4j.loggerfactory; public final class postdatadumperfilter implements filter { logger logger = loggerfactory.getlogger(getclass()); private filterconfig filterconfig = null; public void destroy() { this.filterconfig = null; } public void dofilter(servletrequest request, servletresponse response, filterchain chain) throws ioexception, servletexception { if (filterconfig == null) return; enumeration<string> names = request.getparameternames(); stringbuilder output = new stringbuilder(); while (names.hasmoreelements()) { string name = (string) names.nextelement(); output.append(name).append("="); string values[] = request.getparametervalues(name); for (int i = 0; i < values.length; i++) { if (i > 0) { output.append("' "); } output.append(values[i]); } if (names.hasmoreelements()) output.append("&"); } request.setattribute("postdata", output); logger.debug("postdata: " + output); chain.dofilter(request, response); } public void init(filterconfig filterconfig) throws servletexception { this.filterconfig = filterconfig; } }
在web.xml中添加配置该filter:
<filter> <filter-name>post-data-dumper-filter</filter-name> <filter-class>com.xiaoxiliu.postdatadumperfilter</filter-class> </filter> <filter-mapping> <filter-name>post-data-dumper-filter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
三、查询访问最耗时的接口
这就要用到万能的awk了 我们的日志倒数第二列显示的访问时间。cat logs/localhost_access_log.2016-10-25.txt | awk '{print $(nf-1)" "$0}' | sort -n -r| awk '{$1="";print $0}' 按照倒数第二列由大到小显示接口以及访问时间。这样我们就能找出那些借口耗时较大,然后对其进行优化,提高用户体验。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: HTML5 3D书本翻页动画的实现示例