Skip to main content

A command-line tool for querying the Graylog API with rich terminal output

Project description

grapicli

PyPI version Python 3.14+ License: MIT

A command-line tool for querying the Graylog REST API, built with Typer and Rich.

Features

  • ๐Ÿ” Search logs by source host, message content, or any combination
  • ๐Ÿ• Flexible time ranges โ€” relative (last N minutes) or absolute (--since / --until)
  • ๐Ÿ“‹ Configurable result limits with --limit
  • ๐Ÿ”‘ Token-based authentication loaded automatically from a .env file
  • ๐Ÿ–ฅ๏ธ Rich terminal output โ€” results displayed in a colour-coded table

Installation

grapicli requires Python 3.14 or newer. The recommended way to install is directly from PyPI into a dedicated virtual environment.

1. Create a virtual environment

python3.14 -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate

Tip: If you manage multiple Python versions, use pyenv to install 3.14 first:

pyenv install 3.14
pyenv local 3.14
python -m venv .venv && source .venv/bin/activate

2. Install from PyPI

pip install grapicli

Verify the installation:

grapicli --help

Configuration

Create a .env file in your working directory with your Graylog credentials:

export GRAYLOG_URL=https://your-graylog-server
export GRAYLOG_TOKEN=your_api_token_here

Note: Never commit your .env file to version control.

Finding your API token

  1. Log in to the Graylog web interface.
  2. Go to System โ†’ Users and Teams โ†’ Edit Profile โ†’ API Tokens.
  3. Create a new token and copy the value into your .env file.

Usage

grapicli search [OPTIONS]

Options

Flag Short Type Default Description
--source -s TEXT โ€” Filter by source host or identifier
--message -m TEXT โ€” Filter by message text (Lucene substring match)
--limit -n INT 30 Maximum number of messages to return
--last -l INT 15 Return messages from the last N minutes
--since -S TEXT โ€” Start of an absolute time range
--until -U TEXT โ€” End of an absolute time range (defaults to now)

Time range

Relative (default) โ€” returns messages from the last 15 minutes:

grapicli search
grapicli search --last 60   # last hour

Absolute โ€” --since and/or --until switch to an exact range. All times are UTC.

Accepted formats: YYYY-MM-DD HH:MM:SS ยท YYYY-MM-DDTHH:MM:SS ยท YYYY-MM-DD HH:MM ยท YYYY-MM-DD

grapicli search --since "2026-04-17 08:00:00" --until "2026-04-17 09:00:00"

Examples

# Default: last 15 minutes, up to 30 messages
grapicli search

# Filter by source host
grapicli search --source myserver

# Filter by message text and increase result count
grapicli search --message "error" --limit 100

# Last hour
grapicli search --last 60

# Absolute range
grapicli search --since "2026-04-17 08:00:00" --until "2026-04-17 09:00:00"

# Combine source, message filter, and time range
grapicli search --source myserver --message "timeout" --since "2026-04-17 12:00:00"

Output

Query: source:"myserver"  Matches: 4821  Showing: 30/30
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
โ”ƒ Timestamp                โ”ƒ Source     โ”ƒ Message                            โ”ƒ
โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ
โ”‚ 2026-04-17T10:00:01.000Z โ”‚ myserver   โ”‚ Service started successfully       โ”‚
โ”‚ 2026-04-17T10:00:02.000Z โ”‚ myserver   โ”‚ Connected to database              โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Development

Clone the repository and install with dev dependencies using Poetry:

git clone https://github.com/mmackenna/grapicli.git
cd grapicli
poetry install --extras dev

Running tests

poetry run pytest

Coverage report is written to htmlcov/.

Building docs locally

poetry run mkdocs serve

License

MIT

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

grapicli-0.8.0.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

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

grapicli-0.8.0-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file grapicli-0.8.0.tar.gz.

File metadata

  • Download URL: grapicli-0.8.0.tar.gz
  • Upload date:
  • Size: 6.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.4 CPython/3.14.4 Linux/5.14.0-611.47.1.el9_7.x86_64

File hashes

Hashes for grapicli-0.8.0.tar.gz
Algorithm Hash digest
SHA256 ac025f7ac275dbcb7623de0467816c789b95794ffd9a219092236c10bc16d983
MD5 91fdad3b16c9ea193e187c076f324c93
BLAKE2b-256 6d9ac17b8a1851ff4392e73bbf2d317d2b79a662c3c429cb3dc4829df342678a

See more details on using hashes here.

File details

Details for the file grapicli-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: grapicli-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.4 CPython/3.14.4 Linux/5.14.0-611.47.1.el9_7.x86_64

File hashes

Hashes for grapicli-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9059581e9959d961f64749ed096c52346f84450df1e06c2584be233e8b057c62
MD5 cddcb57cef6ba0f80d8f92327a634bea
BLAKE2b-256 58cede7501c0495382e32d42d4779a9db62041f20be8e9377f4f696ad1fd5a68

See more details on using hashes here.

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