To:https://github.com/JeffXue/web-log-parser
web-log-parser为开源的分析web日志工具,采用python语言开发,具有灵活的日志格式配置。
python2
pip install -r requirements.txt
python start.py
ERROR: Complete output from command 'd:\program files\python27\python.exe' -u -c 'import setupto
ols, tokenize;__file__='"'"'c:\\users\\admin\\appdata\\local\\temp\\pip-install-zdlfne\\numpy\\setup
.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '
"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'c:\users\adm
in\appdata\local\temp\pip-record-vj_ewi\install-record.txt' --single-version-externally-managed --co
mpile:
ERROR: Running from numpy source directory.
blas_opt_info:
blas_mkl_info:
libraries mkl,vml,guide not found in ['d:\\program files\\python27\\lib', 'C:\\', 'd:\\program
files\\python27\\libs']
NOT AVAILABLE
pip install numpy==1.10.1也没用
下载exe安装没成功:
https://sourceforge.net/projects/numpy/files/NumPy/1.10.1/
直接pip install numpy后不管了,跳过运行
bin目录下运行python start.py
提示安装模块:pip install requests
error: Microsoft Visual C++ 9.0 is required (Unable to find vcvarsall.bat). Get it from http://aka.ms/vcpython27
由于python默认调用VS2008编译器编译相关C代码,因此出现这种错误的原因可能有如下几个方面:
1.没有安装VS2008
2.安装了32位VS2008,使用64位python
由于安装VS2008或者安装
Microsoft Visual C++ Compiler for Python 2.7(https://www.microsoft.com/en-us/download/details.aspx?id=44266)后仍会碰到其他问题,例如找不到"stdbool.h"头文件等,因此建议为python指定更高版本的VS编译器。
电脑上安装了VS2008,建议打开 “python安装目录/Lib/distutils/msvc9compiler.py”文件,找到find_vcvarsall函数,在该函数开头添加version =VS版本号,例如使用VS2013,则version = 12.0。
电脑没有安装VS2008,还可以在环境变量中添加项 VS90COMNTOOLS,值为“VS安装路径\Common7\Tools”,例如D:\Program Files\Microsoft Visual Studio 12.0\Common7\Tools,也可在控制输入: SET VS90COMNTOOLS=%VS120COMNTOOLS%
---------------------
作者:ylh071032
来源:CSDN
原文:https://blog.csdn.net/ylh071032/article/details/53435793
版权声明:本文为博主原创文章,转载请附上博文链接!
或者参考:https://blog.csdn.net/Rational_HYJ/article/details/77233309
E:\www\weblog\web-log-parser\bin>python start.py
2019-07-15 02:16:58.386000 Start parse file : access.log
Traceback (most recent call last):
File "start.py", line 380, in main
parse_log_file(target_file, log_format)
File "start.py", line 231, in parse_log_file
response_avg = int(pv / len(set(times)))
ZeroDivisionError: integer division or modulo by zero
config.ini规则配置可能错了