加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MainApp.py 677 Bytes
一键复制 编辑 原始数据 按行查看 历史
yougang 提交于 2013-04-10 22:23 . 客户访问路径日志分析
# -*- encoding=utf8 -*-
from src.main.handler.RegexpHandler import RegexpHandler
from src.main.action.HitsStatsAction import HitsStatsAction
handler = RegexpHandler(r"^\[.*SystemOut.*Req\sUrl:/perbank/(.*\.do).*$")
filenames = [
'raw/20130308/61/SystemOut_13.03.08_08.25.52.log',
'raw/20130308/61/SystemOut_13.03.08_08.35.42.log',
'raw/20130308/62/SystemOut_13.03.08_08.25.26.log',
'raw/20130308/62/SystemOut_13.03.08_08.40.28.log',
]
#创建点击率分析报告
machine = HitsStatsAction(handler, "report.txt", *filenames)
machine.action(single_report=True, output_format="操作名称: {0}, 点击次数: {1}")
#创建单客户行为报告
#创建时间切分报告
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化