Skip to main content

CLI tool for querying Better Stack logs via ClickHouse SQL

Project description

bslog - Better Stack Log CLI

PyPI version Python version License: MIT

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, search work 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 -f flag
  • 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.

  1. Log into Better Stack
  2. Navigate to Settings > API Tokens
  3. Create or copy your Telemetry API token
  4. 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.

  1. Go to Better Stack > Logs > Dashboards
  2. Click "Connect remotely"
  3. Click "Create credentials"
  4. 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, developmentsweetistics-dev
  • prod, productionsweetistics
  • stagingsweetistics-staging
  • testsweetistics-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 piping
  • table - Formatted table output
  • csv - 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

bslog-1.4.2.tar.gz (57.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bslog-1.4.2-py3-none-any.whl (28.5 kB view details)

Uploaded Python 3

File details

Details for the file bslog-1.4.2.tar.gz.

File metadata

  • Download URL: bslog-1.4.2.tar.gz
  • Upload date:
  • Size: 57.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bslog-1.4.2.tar.gz
Algorithm Hash digest
SHA256 5231493564bdc9c3d4ec65d1844885b6d72f4a038808669bd49c3aae3a9fa4c5
MD5 60446bba8ad75c9cd32ceab1f542f25d
BLAKE2b-256 29d5a6c5ce1af87167aa49449023d43df2f4dd0847a8500fc89edf3587d53633

See more details on using hashes here.

Provenance

The following attestation bundles were made for bslog-1.4.2.tar.gz:

Publisher: release.yml on ondraz/bslog-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bslog-1.4.2-py3-none-any.whl.

File metadata

  • Download URL: bslog-1.4.2-py3-none-any.whl
  • Upload date:
  • Size: 28.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bslog-1.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 26809aa9100f4037ffa1c66d60dd44912dc38626dc5890c443856b0fc2cffa5f
MD5 04245c053139cb171b14b7a46f968106
BLAKE2b-256 50ef50f20afbf50a0e3b20c5fc42df7c88d0ed7baeaf3df703f33691daf32622

See more details on using hashes here.

Provenance

The following attestation bundles were made for bslog-1.4.2-py3-none-any.whl:

Publisher: release.yml on ondraz/bslog-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page