Logger collects logs from many sources at high throughput, stores them in ClickHouse, and lets you investigate them in plain English — not just search, but an agentic AI investigator that queries your logs, mines recurring patterns, and root-causes incidents.
We are developing libraries that can be easily installed and configured to interact with the Log Ingestor. These SDKs will simplify the process of sending logs from your applications to our centralized logging system.
Features (Planned):
- Easy integration with popular programming languages
- Configurable log levels and formats
The Log Ingestor is a critical component of our logging infrastructure, designed to efficiently receive, collect, and store logs from various sources into a database. Its primary focus is on performance and reliability, ensuring that logs are processed and stored quickly and efficiently.
Key Features:
- High-throughput log ingestion
- Support for multiple input formats (e.g., JSON, plaintext)
- Scalable architecture to handle large volumes of logs
- Data validation and preprocessing
Log Collection Methods:
- HTTP Requests (Fully implemented)
- Kafka Streams (Work in Progress)
- gRPC Requests (Work in Progress)
How It Works:
- Log Collection: The Log Ingestor accepts incoming log data from different collectors, each capable of receiving logs via HTTP requests, Kafka, or gRPC.
- Buffering for Efficiency:
- Received logs are temporarily stored in a common buffer.
- Logs are batched together before being sent to the database.
- The system waits until either 100 logs are collected or 5 seconds have passed, whichever occurs first, before inserting the batch into the database.
- Parallel Processing: Each collector, along with the buffering and output functions, operates in its own goroutine, maximizing performance through parallel processing of log data.
Future Enhancements:
- Implementation of rules-based log routing to different data sources
For more details on the Log Ingestor, please refer to our Log Ingestor Documentation.
The Log Server acts as an intermediary between the stored logs and the user interface. It provides endpoints for querying logs and incorporates an AI-powered interface for natural language log navigation.
Key Features:
- RESTful API for log querying
- AI-assisted natural language processing for log analysis
- Advanced filtering and search capabilities
- Real-time log streaming
Tools the agent can call
| Tool | Purpose |
|---|---|
run_sql |
Run one read-only ClickHouse query (SELECT/SHOW/DESCRIBE/EXPLAIN) |
find_patterns |
Cluster log messages into recurring templates to spot what spiked |
get_changes |
Fetch deploys/config changes in a window to correlate with anomalies |
Engineering choices
- Provider-agnostic — all model calls go through one internal interface; Anthropic, OpenAI, or the local Claude CLI are swappable via config
- Read-only by design — a restricted DB user + query validation + row/time caps; the agent can never write
- Self-healing queries — on a SQL error the agent gets the error back and corrects itself
- Eval + tracing — a golden-set eval harness gates prompt/model changes; every run is traced (tools, tokens, cost, latency)
The Dashboard offers a visual interface for users to query, view, and analyze logs efficiently.
Key Features:
- Intuitive UI for log exploration
- Real-time log monitoring
- Export and sharing capabilities (WIP)

