ToolHub
中文
Light
GitHub
返回首页
/
开发编程
/
日志解析器增强
加载中...
日志输入
127.0.0.1 - - [12/May/2026:10:12:01 +0800] "GET /api/users HTTP/1.1" 200 532 "-" "curl/8" 127.0.0.1 - - [12/May/2026:10:12:04 +0800] "POST /login HTTP/1.1" 302 42 "-" "Mozilla" {"time":"2026-05-12T10:12:10Z","method":"GET","path":"/health","status":200,"duration":12}
解析结果
复制
{ "total": 3, "byStatus": { "200": 2, "302": 1 }, "byMethod": { "GET": 2, "POST": 1 }, "githubActions": { "errors": [], "warnings": [], "failedSteps": [] }, "rows": [ { "kind": "combined", "method": "GET", "path": "/api/users", "status": 200, "bytes": 532 }, { "kind": "combined", "method": "POST", "path": "/login", "status": 302, "bytes": 42 }, { "kind": "json", "method": "GET", "path": "/health", "status": 200, "duration": 12 } ] }