CLI tool for querying Better Stack logs via ClickHouse SQL
Project description
bslog - Better Stack Log CLI
A powerful, intuitive CLI tool for querying Better Stack logs with GraphQL-inspired syntax. Query your logs naturally without memorizing complex SQL or API endpoints.
This is python adaptation of original typescript bslog from @steipete.
Features
- GraphQL-inspired query syntax - Write queries that feel natural and are easy to remember
- Simple commands - Common operations like
tail,errors,searchwork out of the box - Smart filtering - Filter by level, subsystem, time ranges, or any JSON field
- Beautiful output - Color-coded, formatted logs that are easy to read
- Multiple formats - Export as JSON, CSV, or formatted tables
- Real-time following - Tail logs in real-time with
-fflag - Query history - Saves your queries for quick re-use
- Configurable - Set defaults for source, output format, and more
- jq integration - Pipe output through jq for advanced filtering
Installation
From PyPI (Recommended)
pip install bslog
# Or with uv
uv add bslog
From Source
git clone <repo-url>
cd bslog-python
uv sync
Prerequisites
- Python >= 3.13
Authentication Setup
Better Stack uses two different authentication systems, and both are required for full functionality:
1. Telemetry API Token (Required)
Used for listing sources, getting source metadata, and resolving source names.
- Log into Better Stack
- Navigate to Settings > API Tokens
- Create or copy your Telemetry API token
- Add to your shell configuration:
export BETTERSTACK_API_TOKEN="your_telemetry_token_here"
2. Query API Credentials (Required for querying logs)
Used for reading log data and executing SQL queries.
- Go to Better Stack > Logs > Dashboards
- Click "Connect remotely"
- Click "Create credentials"
- Add to your shell configuration:
export BETTERSTACK_QUERY_USERNAME="your_username_here"
export BETTERSTACK_QUERY_PASSWORD="your_password_here"
Then reload your shell: source ~/.zshrc
Quick Start
# List all your log sources
bslog sources list
# Set your default source
bslog config source my-app-production
# Get last 100 logs
bslog tail
# Get last 50 error logs
bslog errors -n 50
# Search for specific text
bslog search "user authentication failed"
# Follow logs in real-time
bslog tail -f
# Get logs from the last hour
bslog tail --since 1h
GraphQL-Inspired Query Syntax
# Simple query with field selection
bslog query "{ logs(limit: 100) { dt, level, message } }"
# Filter by log level
bslog query "{ logs(level: 'error', limit: 50) { * } }"
# Time-based filtering
bslog query "{ logs(since: '1h') { dt, message, error } }"
# Complex filters
bslog query "{
logs(
level: 'error',
subsystem: 'payment',
since: '1h',
limit: 200,
where: { environment: 'prod' }
) {
dt, message, userId
}
}"
Command Reference
tail - Stream logs
bslog tail [source] [options]
-n, --limit <number> Number of logs (default: 100)
-l, --level <level> Filter by log level
--subsystem <name> Filter by subsystem
-f, --follow Follow log output
--interval <ms> Polling interval (default: 2000)
--since <time> Time lower bound (e.g., 1h, 2d)
--until <time> Time upper bound
--format <type> Output format (json|table|csv|pretty)
--fields <names> Comma-separated list of fields
--sources <names> Comma-separated sources to merge
--where <filter> Filter JSON fields (field=value, repeatable)
--jq <filter> Pipe JSON through jq
-v, --verbose Show SQL query
errors / warnings - Show error/warning logs
bslog errors [source] [options] # Same options as tail
bslog warnings [source] [options]
search - Search logs
bslog search <pattern> [source] [options]
trace - Follow a request across sources
bslog trace <requestId> [source] [options]
query - GraphQL-inspired queries
bslog query <query> [-s source] [-f format] [-v]
sql - Raw ClickHouse SQL
bslog sql <sql> [-f format] [-v]
sources list / sources get
bslog sources list [-f format]
bslog sources get <name> [-f format]
config set / config show / config source
bslog config set <key> <value> # Keys: source, limit, format, logLevel, queryBaseUrl
bslog config show [-f format]
bslog config source <name> # Shorthand for config set source
Source Aliases
dev,development→sweetistics-devprod,production→sweetisticsstaging→sweetistics-stagingtest→sweetistics-test
Time Format Reference
- Relative:
1h,30m,2d,1w - ISO 8601:
2024-01-15T10:30:00Z - Date only:
2024-01-15
Output Formats
pretty- Color-coded human-readable output (default)json- Standard JSON, good for pipingtable- Formatted table outputcsv- CSV for spreadsheet import
Development
# Install dev dependencies
uv sync
# Run tests
uv run pytest --cov=bslog -v
# Lint
uv run ruff check .
# Type check
uv run mypy bslog
License
MIT License - see LICENSE for details.
Acknowledgments
This is python adaptation of original typescript bslog from @steipete.
- Built with Typer and Rich
- HTTP client: httpx
- Powered by Better Stack logging infrastructure
- Inspired by GraphQL's intuitive query syntax
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bslog-1.4.4.tar.gz.
File metadata
- Download URL: bslog-1.4.4.tar.gz
- Upload date:
- Size: 57.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db87981bbd18ffe34289f3e7def78c348b44924b43d30e3c1c8a6616174144f4
|
|
| MD5 |
997fa3d6a42f2a17f2af725b3c6e352d
|
|
| BLAKE2b-256 |
93b92299ccfddf2eabf63b794ce8c33367cc9dafba0e7401658aba3b6771def4
|
Provenance
The following attestation bundles were made for bslog-1.4.4.tar.gz:
Publisher:
release.yml on ondraz/bslog-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bslog-1.4.4.tar.gz -
Subject digest:
db87981bbd18ffe34289f3e7def78c348b44924b43d30e3c1c8a6616174144f4 - Sigstore transparency entry: 1050624419
- Sigstore integration time:
-
Permalink:
ondraz/bslog-python@39c97a8ff9e78629248113bf1a4e40f0b5093b57 -
Branch / Tag:
refs/tags/v1.4.4 - Owner: https://github.com/ondraz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@39c97a8ff9e78629248113bf1a4e40f0b5093b57 -
Trigger Event:
push
-
Statement type:
File details
Details for the file bslog-1.4.4-py3-none-any.whl.
File metadata
- Download URL: bslog-1.4.4-py3-none-any.whl
- Upload date:
- Size: 28.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb923d994bfd860b2d94e2a22d67d6827cec79e6ff0996a96717bebb1d20e8c9
|
|
| MD5 |
7ec42b6995c82c5a5b09511a4c0af653
|
|
| BLAKE2b-256 |
548071d1a7bd8be39aa032d52abff78263381a55d2d5f03a1ac7709d3acdc426
|
Provenance
The following attestation bundles were made for bslog-1.4.4-py3-none-any.whl:
Publisher:
release.yml on ondraz/bslog-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bslog-1.4.4-py3-none-any.whl -
Subject digest:
eb923d994bfd860b2d94e2a22d67d6827cec79e6ff0996a96717bebb1d20e8c9 - Sigstore transparency entry: 1050624426
- Sigstore integration time:
-
Permalink:
ondraz/bslog-python@39c97a8ff9e78629248113bf1a4e40f0b5093b57 -
Branch / Tag:
refs/tags/v1.4.4 - Owner: https://github.com/ondraz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@39c97a8ff9e78629248113bf1a4e40f0b5093b57 -
Trigger Event:
push
-
Statement type: