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.0.tar.gz (33.4 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.0-py3-none-any.whl (28.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: bslog-1.4.0.tar.gz
  • Upload date:
  • Size: 33.4 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.0.tar.gz
Algorithm Hash digest
SHA256 03b7cd6e65a16ee4a9f7a47df60ac403e5be228f0c933aebd2642da77ae7bb90
MD5 748112d3273f4be30f2673136ee5e356
BLAKE2b-256 699b9c95441a71120da02d7ffb0d81713cc276dc3cb3ad5a2df895489d587b2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bslog-1.4.0.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.0-py3-none-any.whl.

File metadata

  • Download URL: bslog-1.4.0-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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e513697d0ca58eb6ec2db6cf81414a5a48204e0c97c4a658c234d8069d2d5b02
MD5 f77dac8277e7ac88036d3d29a247dcda
BLAKE2b-256 ada0185ba1897f12142415de092193f595c8aad21666066efe6bc6c422f2a66b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bslog-1.4.0-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