python-observability
Warn
Audited by Runlayer on Feb 26, 2026
Risk Level: MEDIUM
Scan Summary
Flagged Files (1)
python-observability/SKILL.mdMEDIUM
84.9%
Malicious tool definition detected
Unbounded labels (like user IDs) explode storage costs. ## Quick Start ```python import structlog structlog.configure( processors=[ structlog.processors.TimeStamper(fmt="iso"), structlog.processors.JSONRenderer(), ], ) logger = structlog.get_logger() logger.info("Request processed", user_id="123", duration_ms=45) ``` ## Fundamental Patterns ### Pattern 1: Structured Logging with Structlog Configure structlog for JSON output with consistent fields.
Audit Metadata