https://github.com/s045pd/accesslogreader
v2ray access log Analyzer
https://github.com/s045pd/accesslogreader
log v2ray
Last synced: 2 months ago
JSON representation
v2ray access log Analyzer
- Host: GitHub
- URL: https://github.com/s045pd/accesslogreader
- Owner: s045pd
- Created: 2025-02-20T05:57:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-20T06:11:48.000Z (over 1 year ago)
- Last Synced: 2025-02-20T07:22:53.019Z (over 1 year ago)
- Topics: log, v2ray
- Language: Python
- Homepage:
- Size: 21.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# V2Log - Access Log Analyzer
一个基于 Streamlit 的访问日志分析器,提供可视化的日志分析功能。
> 本项目98%内容由 Cursor 生成



## 功能特点
- 日志分析
- 地理位置可视化
- 访问量时间趋势
- 城市分布统计
- 搜索和过滤功能
- 分页数据展示
## 安装说明
通过 pip 安装
```bash
pip install v2log
```
## 使用说明
可以通过如下命令运行测试应用
```bash
v2log --demo
```
日志分析器支持通过命令行参数指定日志文件路径:
```bash
v2log access.log
```
## 项目结构
```
├── dev.py
├── v2log
│ ├── __init__.py
│ ├── analyzer.py
│ ├── app.py
│ ├── cli.py
│ ├── components.py
│ ├── data
│ │ └── IP2LOCATION-LITE-DB11.BIN
│ └── utils
│ ├── __init__.py
│ ├── generator.py
│ └── helpers.py
├── requirements.txt
└── setup.py
```