Releases: logclaw/logclaw
Releases · logclaw/logclaw
LogClaw v2.5.0 — Stable Release
🚀 LogClaw v2.5.0 — Unified Stable Release
All container images are tagged :stable for easy rollback.
Container Images
# Pull individual services
docker pull ghcr.io/logclaw/logclaw-dashboard:2.5.0
docker pull ghcr.io/logclaw/logclaw-bridge:1.3.0
docker pull ghcr.io/logclaw/logclaw-ticketing-agent:1.5.0
docker pull ghcr.io/logclaw/logclaw-flink-jobs:0.1.1
# Or use :stable tag (always points to latest stable release)
docker pull ghcr.io/logclaw/logclaw-dashboard:stable
docker pull ghcr.io/logclaw/logclaw-bridge:stable
docker pull ghcr.io/logclaw/logclaw-ticketing-agent:stable
docker pull ghcr.io/logclaw/logclaw-flink-jobs:stableDashboard (logclaw-dashboard:2.5.0)
- 🎨 Incident detail redesign with collapsible log sections
- 📤 Send to Service dropdown (PagerDuty, Jira, ServiceNow, OpsGenie, Slack)
- 🌙 Dark mode (light / dark / system)
- ⚡ Bulk incident actions (acknowledge / resolve / escalate selected)
- 📊 CSV export for incidents list
- 🔍 Full-text incident search
- 💀 Loading skeletons and error boundaries with retry
- 🔑 LLM settings overhaul — API key management, provider auto-populate
- 📈 Anomaly Score bar + Detection Details section
- 📋 Evidence Logs viewer with expandable messages
- 🏷️ LLM fallback badge when AI analysis unavailable
Ticketing Agent (logclaw-ticketing-agent:1.5.0)
- 🧠 Anthropic SDK (v0.84.0) + OpenAI SDK (v2.26.0) integration
- 🔑 Runtime API key storage with env var fallback
- 📜 Audit trail system with ring buffer
- 📊 LLM status monitoring endpoint
- ⚡ Batch incident transitions API
- 🔄 Incident auto-deduplication
- 🏷️
llm_fallbackflag for incidents where AI analysis was skipped - 📊 Log count fix —
track_total_hits+ timestamp range filter (was capped at 10,000)
Bridge (logclaw-bridge:1.3.0)
- OTLP-to-OpenSearch ETL pipeline
- Kafka consumer with batched indexing
Flink Jobs (logclaw-flink-jobs:0.1.1)
- ETL, enrichment, and anomaly detection pipelines
Helm Quick Start
helm upgrade logclaw ./charts/logclaw-tenant \
--namespace logclaw \
--set logclaw-dashboard.image.repository=ghcr.io/logclaw/logclaw-dashboard \
--set logclaw-dashboard.image.tag=stable \
--set logclaw-ticketing-agent.image.repository=ghcr.io/logclaw/logclaw-ticketing-agent \
--set logclaw-ticketing-agent.image.tag=stable \
--set logclaw-bridge.image.repository=ghcr.io/logclaw/logclaw-bridge \
--set logclaw-bridge.image.tag=stableRollback
# Roll back to this stable release anytime
helm upgrade logclaw ./charts/logclaw-tenant --reuse-values \
--set logclaw-dashboard.image.tag=stable \
--set logclaw-ticketing-agent.image.tag=stable