https://github.com/integeralex/kakashi
Enterprise-grade logging for Python with a modern functional pipeline, structured logging, and first-class FastAPI/Flask/Django integrations.
https://github.com/integeralex/kakashi
Last synced: 4 months ago
JSON representation
Enterprise-grade logging for Python with a modern functional pipeline, structured logging, and first-class FastAPI/Flask/Django integrations.
- Host: GitHub
- URL: https://github.com/integeralex/kakashi
- Owner: IntegerAlex
- License: lgpl-2.1
- Created: 2025-08-22T15:28:25.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-08-27T11:00:18.000Z (5 months ago)
- Last Synced: 2025-08-27T15:57:17.037Z (5 months ago)
- Language: Python
- Homepage: https://docs.kakashi.gossorg.in
- Size: 2.37 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Kakashi - Professional High-Performance Logging Library
[](https://pepy.tech/projects/kakashi)
[](https://pypi.org/project/kakashi/)
[](https://github.com/IntegerAlex/kakashi/blob/main/LICENSE)
[](https://github.com/IntegerAlex/kakashi/stargazers)
[](https://github.com/IntegerAlex/kakashi/issues)
A modern, high-performance logging library designed for production applications that require both high throughput and excellent concurrency scaling.
## π Features
- **High Performance**: 60,000+ logs/sec throughput with balanced concurrency
- **Thread-Safe**: Minimal contention with thread-local optimizations
- **Structured Logging**: Field-based logging with minimal overhead
- **Memory Efficient**: <0.02MB memory usage for async operations
- **Professional Code**: Clean, maintainable architecture
- **Drop-in Replacement**: Compatible with Python's built-in logging
## π Performance Targets
| Metric | Target | Status |
|--------|--------|--------|
| **Throughput** | 60,000+ logs/sec | β
EXCEEDED (66,116 logs/sec) |
| **Concurrency Scaling** | 0.65x+ | β
EXCEEDED (1.17x scaling) |
| **Memory Usage** | <0.02MB | β
Maintained |
| **Structured Overhead** | <10% | β
Maintained |
## π Benchmark Results
**β οΈ LEGAL DISCLAIMER**: The following benchmark results are provided for informational purposes only. Performance may vary based on system configuration, workload, and other factors. These results are not guarantees of performance and should not be used for commercial claims or comparisons without independent verification. Kakashi makes no warranties regarding performance characteristics.
### Performance Comparison vs Industry Standards
| Library | Throughput (logs/sec) | Concurrency Scaling | Async Throughput | Notes |
|---------|----------------------|-------------------|------------------|-------|
| **Kakashi (Current)** | 56,310 | **1.17x** | 169,074 | **SUPERIOR** performance |
| **Standard Library** | 18,159 | 0.59x | N/A | Python built-in |
| **Structlog** | 12,181 | 0.47x | N/A | Production ready |
| **Loguru** | 14,690 | 0.46x | N/A | Feature rich |
### Performance Analysis
- **Single-threaded Performance**: Kakashi achieves **3.1x** better throughput than standard library
- **Concurrency Scaling**: **1.17x scaling** - adding threads improves performance (industry-leading)
- **Async Performance**: **169K logs/sec** - 9.3x faster than standard library
- **Memory Efficiency**: Maintains low memory footprint across all scenarios
**Note**: These benchmarks were run on a development system and may not reflect production performance. Always test in your specific environment.
## ποΈ Architecture
```
kakashi/
βββ core/ # Core logging implementation
β βββ logger.py # Main Logger and AsyncLogger classes
β βββ records.py # LogRecord, LogContext, LogLevel
β βββ config.py # Configuration system
β βββ pipeline.py # Pipeline processing components
β βββ async_backend.py # Asynchronous I/O backend
β βββ structured_logger.py # Structured logging support
β βββ sinks.py # Output destination system
βββ performance_tests/ # Performance validation
β βββ validate_performance.py
βββ README.md # This file
```
## π Quick Start
### Basic Usage
```python
from kakashi import get_logger, get_async_logger
# Synchronous logging
logger = get_logger(__name__)
logger.info("Application started", version="1.0.0")
# Asynchronous logging for high throughput
async_logger = get_async_logger(__name__)
async_logger.info("High-volume logging")
# Structured logging with fields
logger.info("User action", user_id=123, action="login", ip="192.168.1.1")
```
### Advanced Configuration
```python
from kakashi import setup_environment, production_config
# Production setup
config = production_config(
service_name="my-api",
version="2.1.0",
enable_async_io=True
)
setup_environment(config)
```
### Framework Integration
```python
# FastAPI
from fastapi import FastAPI
from kakashi import setup_logging
app = FastAPI()
setup_logging("production", service_name="fastapi-app")
# Flask
from flask import Flask
from kakashi import setup_logging
app = Flask(__name__)
setup_logging("production", service_name="flask-app")
```
## π§ Installation
```bash
pip install kakashi
```
## π§ͺ Performance Validation
Run the performance validation to ensure your installation meets production targets:
```bash
cd performance_tests
python validate_performance.py
```
This will test:
- Throughput performance (60K+ logs/sec)
- Concurrency scaling (0.65x+)
- Memory efficiency (<0.02MB)
- Structured logging overhead (<10%)
## π API Reference
### Core Classes
- **`Logger`**: High-performance synchronous logger
- **`AsyncLogger`**: Asynchronous logger with batch processing
- **`LogFormatter`**: Optimized message formatting
### Main Functions
- **`get_logger(name, min_level=20)`**: Get a synchronous logger
- **`get_async_logger(name, min_level=20)`**: Get an asynchronous logger
- **`clear_logger_cache()`**: Clear logger cache
### Configuration
- **`setup_environment(env, **kwargs)`**: Configure logging environment
- **`production_config(**kwargs)`**: Production-optimized configuration
- **`development_config(**kwargs)`**: Development-optimized configuration
## π― Use Cases
### High-Throughput Applications
- **API Services**: Handle thousands of requests per second
- **Data Processing**: Log millions of events efficiently
- **Real-time Systems**: Minimal latency logging
### Production Environments
- **Microservices**: Structured logging with context
- **Distributed Systems**: Async logging for scalability
- **Cloud-Native Apps**: Memory-efficient operation
## π Performance Characteristics
### Throughput Optimization
- Thread-local buffer management
- Pre-computed level checks
- Direct I/O operations
- Minimal object allocation
### Concurrency Optimization
- Lock-free hot paths
- Thread-local caching
- Batch processing
- Cache-line optimization
### Memory Optimization
- Buffer pooling and reuse
- Zero-copy operations where possible
- Adaptive buffer sizing
- Reference counting for lifecycle management
## π¨ Migration from v0.1.x
The v0.2.0 release maintains backward compatibility while providing significant performance improvements:
```python
# Old v0.1.x code (still works)
from kakashi import setup, get_logger
setup("production")
logger = get_logger(__name__)
# New v0.2.0 code (recommended)
from kakashi import get_logger
logger = get_logger(__name__) # Auto-configuration
```
## π§ Roadmap & Collaboration
We are looking for collaborators to help build the next evolution of Kakashi:
- Cloud log dump and long-term storage integrations (S3/GCS/Azure Blob, Kinesis, Kafka)
- Scalable log analysis pipelines (batch + streaming) with enrichment and alerting
- Incident reporting (SLOs/SLIs, error budgets, paging hooks, RCA helpers)
- First-class observability dashboards (Grafana/Loki, Kibana, Datadog, custom UI)
If youβre interested in shaping these capabilities, please:
- Open a discussion with your proposal and interests
- File an issue with [area:roadmap] label
- Or reach out via GitHub to coordinate design/ownership
---
## π€ Contributing
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
## π License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## βοΈ Legal Disclaimers
### Performance Claims
- All performance metrics and benchmark results are provided for informational purposes only
- Performance may vary significantly based on system configuration, workload patterns, and environmental factors
- These results are not guarantees of performance and should not be used for commercial claims without independent verification
- Kakashi makes no warranties regarding performance characteristics or suitability for specific use cases
### Benchmark Results
- Benchmark results are based on specific test conditions and may not reflect real-world performance
- Comparisons with other libraries are provided for context only and should not be considered definitive
- Users are encouraged to conduct their own performance testing in their specific environments
- Results may vary between different Python versions, operating systems, and hardware configurations
### Usage and Liability
- Kakashi is provided "as is" without warranty of any kind
- Users assume all risk associated with the use of this software
- The authors and contributors are not liable for any damages arising from the use of Kakashi
- Always test thoroughly in your specific environment before production deployment
---
**Kakashi v0.2.0** - Professional High-Performance Logging for Python