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.4.tar.gz (57.7 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.4-py3-none-any.whl (28.6 kB view details)

Uploaded Python 3

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

Hashes for bslog-1.4.4.tar.gz
Algorithm Hash digest
SHA256 db87981bbd18ffe34289f3e7def78c348b44924b43d30e3c1c8a6616174144f4
MD5 997fa3d6a42f2a17f2af725b3c6e352d
BLAKE2b-256 93b92299ccfddf2eabf63b794ce8c33367cc9dafba0e7401658aba3b6771def4

See more details on using hashes here.

Provenance

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

Hashes for bslog-1.4.4-py3-none-any.whl
Algorithm Hash digest
SHA256 eb923d994bfd860b2d94e2a22d67d6827cec79e6ff0996a96717bebb1d20e8c9
MD5 7ec42b6995c82c5a5b09511a4c0af653
BLAKE2b-256 548071d1a7bd8be39aa032d52abff78263381a55d2d5f03a1ac7709d3acdc426

See more details on using hashes here.

Provenance

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