A high-performance tool for analyzing CUBRID broker logs, converting them into human-readable format and storing them in SQLite for easy querying and analysis.
This tool helps CUBRID engineers and users inspect and analyze broker logs by:
- Converting raw CUBRID broker log files into a SQLite database
- Rebinding variables into their original SQL queries
- Formatting SQL queries for better readability
- Providing an interactive SQL interface for log analysis
- Clone the repository:
git clone [your-repository-url]
cd cubrid-logtopbind-rs
- Build the project:
cargo build --release
Or using Just:
just release
Convert a broker log file to SQLite database:
./target/release/logtopbind path/to/your/broker.log
This will create a queries.db
file in your current directory.
It only takes a few seconds to create queries.db, even for 50M log_top.q file input.
The logtopprint
utility allows you to quickly inspect specific queries by their query number:
cargo build --bin logtopprint
./target/debug/logtopprint --query-no <QUERY_NO>
Available options:
Options:
-q, --query-no <QUERY_NO> Query number to look up
-d, --database <DATABASE> Path to the SQLite database file [default: queries.db]
-h, --help Print help
-V, --version Print version
Example usage:
./target/debug/logtopprint --query-no 3
To analyze the converted logs using SQL:
./target/release/sqlite-rs queries.db
Or run specific queries:
./target/release/sqlite-rs queries.db 'SELECT * FROM logs;'
The tool creates a SQLite database with the following schema:
CREATE TABLE IF NOT EXISTS logs (
id INTEGER PRIMARY KEY AUTOINCREMENT,
query_no TEXT NOT NULL,
filename TEXT NOT NULL,
original_query TEXT NOT NULL,
replaced_query TEXT,
bind_vars JSON NOT NULL
);
- View all queries with their bound variables:
SELECT query_no, replaced_query FROM logs;
- Get the first bind variable from each query:
SELECT bind_vars -> '$[0]' FROM logs;
- Rust (latest stable version)
- SQLite 3 (optional)
- Just command runner (optional)
The project uses Just as a command runner. Here are some useful commands:
# Build the project
just build
# Run tests
just test
# Format code
just format
# Lint code
just lint
# Run with test data
just run-logtopbind-simple
# Run with larger dataset (500k entries)
just run-logtopbind-500k
The tool includes performance test targets:
# Test with small dataset
just run-logtopbind-simple
# Test with large dataset (500k entries)
just run-logtopbind-500k
anyhow
: Error handlingindicatif
: Progress barsregex
: Regular expression parsingrusqlite
: SQLite database interfaceserde_json
: JSON processingsqlformat
: SQL formatting