标签:stack 时间 val format port http 格式化 end director
有的时候我们要使用日志分析工具对日志进行分析,需要对日志进行格式化,比如,要把accessLog格式化成这样的格式
c-ip s-ip x-InstancePort date time-taken x-Protocol cs-method cs-uri sc-status x-ResponseSize bytes x-Referrer x-UserAgent
在tomcat的conf/server.xml加入配置:
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log" suffix=".txt" pattern="%{X-Real-IP}i %A %p %{yyyy-MM-dd HH:mm:ss}t %D %H %m %U %s %B %B %{Referer}i %{User-Agent}i" />
关于accessLog的官方说明,请看 http://tomcat.apache.org/tomcat-8.0-doc/config/valve.html#Access_Logging
常用配置如下:
enableLookups
for the connector is false) --远程主机名称(如果resolveHosts为false则展示IP)%{xxx}p
below. --接受请求的本地端口Access Log中也支持cookie,请求header,响应headers,Session或者其他在ServletRequest中的对象的信息
%{xxx}i
write value of incoming header with name xxx
%{xxx}o
write value of outgoing header with name xxx
%{xxx}c
write value of cookie with name xxx
%{xxx}r
write value of ServletRequest attribute with name xxx
%{xxx}s
write value of HttpSession attribute with name xxx
%{xxx}p
write local (server) port (xxx==local
) or remote (client) port (xxx=remote
)%{xxx}t
write timestamp at the end of the request formatted using the enhanced SimpleDateFormat pattern xxx
如果tomcat前面有nginx做负载均衡,则要修改nginx的配置
Nginx的server主机配置段中添加:
proxy_set_header X-Real-IP $remote_addr; #真实的远端IP地址
然后再tomcat accessLog用%{X-Real-IP}i 获取即可
标签:stack 时间 val format port http 格式化 end director
原文地址:http://www.cnblogs.com/jager/p/6117177.html