博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
分享一个IIS日志分析工具-LogParse
阅读量:5134 次
发布时间:2019-06-13

本文共 987 字,大约阅读时间需要 3 分钟。

分享一个IIS日志分析工具 

LogParser工具的使用

1)先安装LogParser 2.2.msi ,是一个命令行工具,功能强大,但使用不便;

下载地址:http://www.microsoft.com/DownLoads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&displaylang=en

2)再安装Log Parser Lizard 1.0.exe,UI界面的管理工具。

下载地址:http://www.brothersoft.com/log-parser-lizard-download-238815.html

——这2个文件可以点此。

   

3)查询IIS W3C Logs格式的日志

-- 查询所有字段

select top 100 * from D:\W3SVC1177423993\ex130201.log

-- 查询特定字段

select top 100 date,

time,

cs-method,

cs-uri-stem,

cs-uri-query,

sc-status,

time-taken,

cs(User-Agent)

from D:\task1\ex130203.log

   

--分组排序

select top 100 avg(time-taken) as [Average-Time],

date as [Date],

     time as [Time],   

     cs-method as [Request Verb],

     cs-uri-stem as [Request URI],

     sc-status as [Status]

from D:\task123\author-17.57-ex130203\ex130203.log

group by [Date],[Time],[Request Verb],[Request URI],[Status]

order by [Average-Time] desc

   

4)查询HTTP Error Log格式的日志

select top 40 * from D:\HTTPERR\httperr4.log

 

 

   

转载于:https://www.cnblogs.com/fanyong/archive/2013/05/31/3110022.html

你可能感兴趣的文章
MVC View返回list列表
查看>>
AT&T汇编针对x86指令集格式
查看>>
hadoop 3.x 关闭安全模式
查看>>
lvm硬盘管理及LVM扩容
查看>>
python3—列表
查看>>
vue的route和router的区别
查看>>
hihoCoder 1378 网络流二·最大流最小割定理 (网络流学习#2 记录)
查看>>
单元测试spock框架基础
查看>>
关于css的兼容
查看>>
解决录制视频播放正常,导入编辑软件后期编辑时声画不同步的问题
查看>>
IOS 在终端( Terminal )开发
查看>>
.NET平台下开源框架
查看>>
Mybatis注意事项
查看>>
android Dialog&AlertDialog
查看>>
如何实现一个php框架系列文章【2】实现类的自动加载
查看>>
js中(function(){…})()立即执行函数写法理解
查看>>
Humble Numbers(丑数) 超详解!
查看>>
游戏中敏感信息过滤
查看>>
计算机丨浏览器访问出现DNS_PROBE_POSSIBLE解决方法
查看>>
每周.NET前沿技术文章摘要(2017-05-10)
查看>>