Shell文件处理,Tomcat默认项目,AccessLog的配置

最近处理了几个简单的技术问题,在这儿写一下,加深一下映象。

[size=large][b]1. shell读取解析固定格式文件[/b][/size]
在当前项目中,需要处理一个文件的内容,解析每行的数据,以这些数据位参数然后调用一些job完成任务,文件是固定的格式,以“|”分隔每个参数,例子:
假设有如下的一个文件,格式为First_Name|Surname|age, Job的任务是提取出每个人的age,判断是否为成年人
Xianning|Liu|27
Yujiao|Zhang|25

代码:
#!\bin\bash
#################################
#Usage: sh parse.sh <input_file>
#
#example: sh parse.sh records.txt
#
#################################

if [ $# -lt 1 ] ; then
echo "Usage: sh parse.sh <input_file>"
exit 0
fi

while read line ; do
age=`echo $line | cut -f3 -d"|"`
first_name=`echo $line | cut -f1 -d"|"`

if [ $age -gt 18 ]; then
echo "$first_name is growup"
else
echo "$first_name is a child"
fi
done < $1


[size=large][b]2. Tomcat7的默认项目配置[/b][/size]
Tomcat的所有项目都是放在Webapps目录下的,当我们访问Tomcat根目录, 默认情况下会访问webapps目录下的Root项目,可以通过修改Tomcat目录下的配置文件conf/server.xml,来设置自己想要的默认项目,只需要在server.xml的Host节点下添加Context节点,并把其docBase属性设置为自己的项目名即可。
 <Service name="Catalina">
...
<Engine name="Catalina" defaultHost="localhost">
...
<Host name="localhost">
<Context path="" docBase="<your project name>"/>
</Host>
</Engine>
</Service>


[size=large][b]3. Tomcat7 通过Access log记录所有request的performance[/b][/size]
Tomcat服务器默认会记录下所有的请求,这其实是一个很好的performance记录,在我们系统中可以把这个文件导入到Splunk中,然后就可以获得整个系统的Performance状态。Tomcat7中关于access log的配置在conf/server.xml中, 如下:
<Service name="Catalina">
...
<Engine name="Catalina" defaultHost="localhost">
...
<Host name="localhost">

<Valve className="org.apache.catalina.valves.AccessLogValve"
directory="logs" prefix="localhost_access_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" resolveHosts="false" />
...
</Host>
</Engine>
</Service>


通过修改日志记录的格式,可以获取基于每个Request的各种信息,包括每个request消耗的时间,从哪儿来的等等,其日志格式支持的参数有:
%a - Remote IP address
%A - Local IP address
%b - Bytes sent, excluding HTTP headers, or '-' if zero
%B - Bytes sent, excluding HTTP headers
%h - Remote host name (or IP address if enableLookups for the connector is false)
%H - Request protocol
%l - Remote logical username from identd (always returns '-')
%m - Request method (GET, POST, etc.)
%p - Local port on which this request was received
%q - Query string (prepended with a '?' if it exists)
%r - First line of the request (method and request URI)
%s - HTTP status code of the response
%S - User session ID
%t - Date and time, in Common Log Format
%u - Remote user that was authenticated (if any), else '-'
%U - Requested URL path
%v - Local server name
%D - Time taken to process the request, in millis
%T - Time taken to process the request, in seconds
%F - Time taken to commit the response, in millis
%I - Current request thread name (can compare later with stacktraces)
%{xxx}i for incoming headers
%{xxx}o for outgoing response headers
%{xxx}c for a specific cookie
%{xxx}r xxx is an attribute in the ServletRequest
%{xxx}s xxx is an attribute in the HttpSession
%{xxx}t xxx is an enhanced SimpleDateFormat pattern
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值