Core Features
- Persistent Logging: Automatically saves detailed information about each API request, including input, output, status, latency, and cost.
- Multiple Backend Support: Comes with built-in support for SQLite and PostgreSQL, allowing you to choose the best storage solution for your deployment needs.
- Rich Querying and Filtering: A powerful search API allows you to filter and sort logs based on a wide range of criteria such as provider, model, status, latency, cost, and content.
- Performance Analytics: The search functionality also provides aggregated statistics, including total requests, success rate, average latency, total tokens, and total cost for the queried data.
- Structured Data Model: Logs are stored in a structured format, with complex objects like message history and tool calls serialized as JSON for efficient storage and retrieval.
- Automatic Data Management: Includes GORM hooks to automatically handle JSON serialization/deserialization and to build a searchable content summary.
Architecture
The LogStore is built around theLogStore interface, which defines the standard methods for interacting with the log database. The primary implementation, RDBLogStore, uses GORM to provide an abstraction over relational databases.
Supported Backends
- SQLite: The default, file-based database, ideal for local development and smaller, single-node deployments.
- PostgreSQL: A production-ready database for scalable and high-availability deployments.
Initialization
The LogStore is initialized at startup based on the provided configuration.LogStore:
Data Model
The core of the LogStore is theLog struct, which represents a single log entry in the logs table.
Usage
Creating Log Entries
A log entry is created by populating aLog struct and passing it to the Create method. This is typically handled internally by Bifrost’s logging plugins.
Searching and Filtering Logs
TheSearchLogs method provides a powerful way to query logs with fine-grained filters and pagination.

