fix: resolve CI/CD linting and type checking issues
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / test (3.9) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-02 10:03:14 +00:00
parent 3c95d7056e
commit 4dd48104d0

409
README.md
View File

@@ -1,22 +1,23 @@
# LogLens CLI # LogLens CLI
LogLens is a powerful CLI tool for parsing, analyzing, and summarizing log files. It automatically detects log formats, identifies error patterns, and provides intelligent insights with severity classifications. A powerful CLI tool for parsing, analyzing, and providing intelligent summaries of log files. LogLens detects error patterns, highlights anomalies, and outputs human-readable reports with severity classifications and suggested fixes.
## Features ## Features
- **Multi-format Support**: Parse JSON, syslog, Apache/Nginx, and raw logs - **Multi-format Log Parsing**: Support for JSON, syslog (RFC 3164/5424), and Apache/Nginx logs
- **Smart Error Detection**: Built-in patterns for common error types - **Error Pattern Detection**: Built-in library of 20+ patterns for common errors (exceptions, stack traces, connection failures)
- **Severity Classification**: Categorize issues as critical, error, warning, info, or debug - **Severity Classification**: Automatic classification into Critical, Error, Warning, Info, and Debug levels
- **Interactive Analysis**: Analyze logs interactively or in batch mode - **Real-time Analysis**: Pipe support for live log streaming with `--follow` mode
- **Rich Output**: Beautiful terminal tables with color-coded severity levels - **Human-readable Reports**: Beautiful table and text outputs with color coding
- **Flexible Output**: Export results as tables, JSON, or plain text - **Unix Tool Integration**: Works seamlessly with grep, sed, and other command-line tools
- **Pipe Support**: Process logs from stdin for real-time analysis
## Installation ## Installation
### From Source ### From Source
```bash ```bash
git clone https://7000pct.gitea.bloupla.net/7000pctAUTO/loglens-cli.git
cd loglens-cli
pip install -e . pip install -e .
``` ```
@@ -26,157 +27,365 @@ pip install -e .
pip install loglens-cli pip install loglens-cli
``` ```
### Development Installation
```bash
pip install -e ".[dev]"
```
## Quick Start
### Analyze a log file
```bash
# Auto-detect format and analyze
loglens analyze app.log
# Specify format explicitly
loglens analyze app.log --format json
loglens analyze app.log --format syslog
loglens analyze app.log --format apache
# Show detailed output
loglens analyze app.log --verbose
```
### Watch logs in real-time
```bash
# Follow log file updates
loglens watch /var/log/app.log
# Follow with auto-refresh
loglens watch /var/log/app.log --interval 2
```
### Generate summary reports
```bash
# Generate summary report
loglens report app.log
# Generate report with severity breakdown
loglens report app.log --severity
# JSON output for programmatic use
loglens report app.log --json
```
### Check detected patterns
```bash
# List all available patterns
loglens patterns
# Search for specific patterns
loglens patterns --search "connection"
# Show pattern details
loglens patterns --show-exceptions
```
### Pipe support
```bash
# Process logs from stdin
tail -f app.log | loglens analyze -
# Chain with grep
grep "ERROR" app.log | loglens analyze -
# Complex pipeline
cat logs/*.log | loglens analyze -
```
## Usage ## Usage
### Basic Analysis ### Commands
#### analyze
Parse and analyze log files.
```bash ```bash
loglens analyze /path/to/logfile.log loglens analyze [OPTIONS] FILE
``` ```
### Auto-detect Format Options:
- `--format, -f TEXT`: Log format (auto, json, syslog, apache)
- `--output, -o TEXT`: Output format (table, json, text)
- `--verbose, -v`: Show detailed analysis
- `--json`: Output as JSON
#### watch
Monitor a log file in real-time.
```bash ```bash
loglens analyze /var/log/syslog loglens watch [OPTIONS] FILE
loglens analyze /var/log/apache2/access.log
loglens analyze application.json
``` ```
### Specify Format Manually Options:
- `--interval SECONDS`: Refresh interval (default: 1.0)
- `--format TEXT`: Log format (auto, json, syslog, apache)
#### report
Generate a summary report.
```bash ```bash
loglens analyze --format json logs/ loglens report [OPTIONS] FILE
loglens analyze --format syslog /var/log/messages
``` ```
### Pipe Support Options:
- `--severity`: Include severity breakdown
- `--output TEXT`: Output format (table, json, text)
- `--json`: Output as JSON
#### patterns
Show available error patterns.
```bash ```bash
cat logfile.txt | loglens analyze loglens patterns [OPTIONS]
grep ERROR system.log | loglens analyze
``` ```
### Watch Files in Real-time Options:
- `--search TEXT`: Search patterns by name
- `--show-exceptions`: Show exception patterns
- `--show-http`: Show HTTP error patterns
- `--json`: Output as JSON
#### info
Show tool information and configuration.
```bash ```bash
loglens watch /var/log/syslog loglens info
loglens watch --interval 5 /var/log/*.log
``` ```
### Generate Reports ### Examples
#### Analyze JSON logs
```bash ```bash
loglens report /var/log/*.log --output report.txt $ loglens analyze application.json --format json
loglens report /var/log/*.log --json ╭──────────────────────────────────────────────────────────────────────────────╮
│ Log Analysis Summary │
├──────────────────────────────────────────────────────────────────────────────┤
│ Total Lines: 150
│ Parsed: 148 (98.7%)
│ Errors Found: 12
│ Severity: 2 Critical, 5 Error, 3 Warning, 2 Info │
╰──────────────────────────────────────────────────────────────────────────────╯
Top Errors:
[CRITICAL] Database connection failure: 3 occurrences
[ERROR] NullPointerException: 2 occurrences
[WARNING] Deprecated API usage: 2 occurrences
``` ```
### List Available Patterns #### Generate report with severity
```bash ```bash
loglens patterns $ loglens report server.log --severity --output table
loglens patterns --group exceptions Severity Breakdown:
loglens patterns --severity error CRITICAL: ████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2
ERROR: ██████████████████████████████████████████████ 15
WARNING: ██████████████████████████░░░░░░░░░░░░░░░░░░░░ 10
INFO: ██████████████████████████████████████████████ 18
DEBUG: ██████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6
``` ```
### Get Version #### Real-time monitoring
```bash ```bash
loglens --version $ loglens watch /var/log/app.log --interval 2
Watching: /var/log/app.log
Press Ctrl+C to stop...
Last 5 lines:
[2024-01-15 10:30:45] ERROR: Database connection failed
[2024-01-15 10:30:46] WARNING: High memory usage detected
[2024-01-15 10:30:47] INFO: Connection pool status: healthy
[2024-01-15 10:30:48] ERROR: Request timeout: /api/users
[2024-01-15 10:30:49] CRITICAL: Service unresponsive
``` ```
### Get Help ## Configuration
```bash ### Environment Variables
loglens --help
| Variable | Default | Description |
|----------|---------|-------------|
| `LOGLEVEL` | INFO | Default log level for output |
| `LOGLENSMASK` | false | Enable PII masking in logs |
| `LOGLENSCOLOR` | auto | Color output: auto, always, never |
### Configuration File
Create `~/.loglens/config.yaml`:
```yaml
default_format: auto
output_format: table
color: auto
severity_rules:
critical:
- "Out of memory"
- "Service unresponsive"
error:
- "ERROR"
- "Exception"
``` ```
## Options ### Custom Patterns
### Global Options Add custom patterns in `~/.loglens/patterns.yaml`:
| Option | Description | ```yaml
|--------|-------------| patterns:
| `-v, --verbosity` | Increase output verbosity (can be used multiple times) | - name: "Custom Error"
| `--config FILE` | Path to a configuration file | regex: "CUSTOM_ERROR:.*"
| `--version` | Show program's version number and exit | severity: error
suggestion: "Check custom error documentation"
### Analyze Command ```
| Option | Description |
|--------|-------------|
| `FILES` | Log files to analyze |
| `--format FORMAT` | Log format: json, syslog, apache, auto (default: auto) |
| `--output FORMAT` | Output format: table, json, text (default: table) |
| `--follow/--no-follow` | Follow file changes |
| `--max-entries N` | Maximum entries to display (default: 100) |
| `--json/--no-json` | Output as JSON |
### Watch Command
| Option | Description |
|--------|-------------|
| `FILES` | Files to watch |
| `--format FORMAT` | Log format |
| `--interval SECONDS` | Refresh interval (default: 1.0) |
| `--max-entries N` | Maximum entries per update |
### Report Command
| Option | Description |
|--------|-------------|
| `FILES` | Log files to include in report |
| `--format FORMAT` | Log format |
| `--output FILE` | Output file path |
| `--json/--no-json` | Output as JSON |
## Supported Log Formats ## Supported Log Formats
### JSON ### JSON Logs
```json ```json
{"timestamp": "2023-12-01T10:00:00Z", "level": "error", "message": "Failed to connect to database"} {
"timestamp": "2024-01-15T10:30:00Z",
"level": "ERROR",
"message": "Connection refused to database",
"logger": "main",
"service": "api"
}
``` ```
### Syslog ### Syslog (RFC 3164/5424)
``` ```
Dec 1 10:00:00 hostname appname[1234]: Error message here Jan 15 10:30:00 server-01 app[1234]: ERROR: Connection refused
Jan 15 10:30:01 server-01 systemd[1]: Started Application Service
``` ```
### Apache/Nginx ### Apache/Nginx
``` ```
192.168.1.1 - - [01/Dec/2023:10:00:00 +0000] "GET /api HTTP/1.1" 200 1234 192.168.1.1 - - [15/Jan/2024:10:30:00 +0000] "GET /api/users HTTP/1.1" 200 1234
``` 192.168.1.2 - - [15/Jan/2024:10:30:01 +0000] "POST /api/login HTTP/1.1" 401 567
## Configuration
Create a `loglens.yaml` file:
```yaml
verbosity: info
format: auto
output: table
``` ```
## Development ## Development
1. Clone the repository: ### Setup
```bash
git clone https://github.com/yourusername/loglens-cli.git
cd loglens-cli
```
2. Install development dependencies: ```bash
```bash git clone https://7000pct.gitea.bloupla.net/7000pctAUTO/loglens-cli.git
pip install -e ".[dev]" cd loglens-cli
``` pip install -e ".[dev]"
```
3. Run tests: ### Running Tests
```bash
pytest tests/ -v ```bash
``` # Run all tests
pytest tests/ -v
# Run with coverage
pytest tests/ --cov=loglens --cov-report=html
# Run specific test suite
pytest tests/unit/ -v
pytest tests/integration/ -v
```
### Linting
```bash
# Ruff linting
ruff check loglens/ tests/
# Type checking
mypy loglens/
```
### Code Formatting
```bash
# Black formatting
black loglens/ tests/
# Import sorting
isort loglens/ tests/
```
## Project Structure
```
loglens-cli/
├── loglens/
│ ├── __init__.py
│ ├── __main__.py
│ ├── cli/
│ │ ├── __init__.py
│ │ ├── main.py
│ │ └── commands.py
│ ├── parsers/
│ │ ├── __init__.py
│ │ ├── base.py
│ │ ├── json_parser.py
│ │ ├── syslog_parser.py
│ │ ├── apache_parser.py
│ │ └── factory.py
│ ├── analyzers/
│ │ ├── __init__.py
│ │ ├── patterns.py
│ │ ├── severity.py
│ │ └── analyzer.py
│ ├── formatters/
│ │ ├── __init__.py
│ │ ├── base.py
│ │ ├── table_formatter.py
│ │ ├── json_formatter.py
│ │ └── text_formatter.py
│ └── config.yaml
├── tests/
│ ├── __init__.py
│ ├── conftest.py
│ ├── unit/
│ │ ├── __init__.py
│ │ ├── test_parsers.py
│ │ ├── test_analyzer.py
│ │ └── test_cli.py
│ ├── integration/
│ │ ├── __init__.py
│ │ └── test_end_to_end.py
│ └── fixtures/
├── pyproject.toml
├── README.md
├── LICENSE
└── .env.example
```
## Error Patterns
LogLens includes patterns for:
- **Exceptions**: Python, Java, Node.js stack traces
- **HTTP Errors**: 5xx server errors, connection failures
- **Database Errors**: Connection refused, query timeouts
- **System Errors**: Out of memory, disk space, permissions
- **Security Issues**: Authentication failures, access denied
- **Performance**: High latency, slow queries, timeouts
## Contributing
Contributions are welcome! Please read the contributing guidelines before submitting PRs.
## License ## License
MIT License MIT License - see LICENSE file for details.