kaskade is a terminal user interface for kafka
Project description
kaskade is a tui (text user interface) for kafka. :rocket: This project is powered by textual and rich!.
For a local kafka environment go to https://github.com/sauljabin/kafka-docker.
:construction: This project is currently a work in progress, but usable by early adopters.
Table of Contents
Installation and Usage
Install with pip:
pip install kaskade
pip
will installkaskade
andkskd
aliases.
Upgrade with pip:
pip install --upgrade kaskade
Help:
kaskade --help
Version:
kaskade --version
Run without config file (it'll take any of kaskade.yml
, kaskade.yaml
, config.yml
or config.yaml
):
kaskade
Run with config file:
kaskade my-file.yml
Running with Docker
Using docker (remember to set a network
and volume
):
docker run --rm -it --network kafka \
--volume $(pwd):/kaskade \
sauljabin/kaskade:latest
Aliases:
alias kaskade='docker run --rm -it --network kafka \
--volume $(pwd):/kaskade \
sauljabin/kaskade:latest'
alias kskd=kaskade
These aliases will mount the current directory as a volume.
Configuration
A default yaml configuration file name can be either kaskade.yml
, kaskade.yaml
, config.yml
or config.yaml
. It supports all the configuration
on kafka consumer configuration page.
Simple connection example:
kafka:
bootstrap.servers: localhost:9093
SSL encryption example:
kafka:
bootstrap.servers: kafka:9092
security.protocol: SSL
ssl.truststore.location: {{path}}/truststore.jks
ssl.truststore.password: {{password}}
SSL auth example:
kafka:
bootstrap.servers: kafka:9092
security.protocol: SSL
ssl.truststore.location: {{path}}/truststore.jks
ssl.truststore.password: {{password}}
ssl.keystore.location: {{path}}/keystore.jks
ssl.keystore.password: {{password}}
ssl.key.password: {{password}}
Support for env variables:
kafka:
bootstrap.servers: ${BOOTSTRAP_SERVERS}
Screenshots
Alternatives
To Do
- Group members table
- Group partitions table
- Messages table
- Schema registry support
- Interactive search
- Produce messages
- Create topic
- Increment test coverage
Development
Python supported versions:
Installing poetry:
pip install poetry
Installing development dependencies:
poetry install
Installing pre-commit hooks:
poetry run pre-commit install
Running kaskade:
poetry run kaskade
Scripts
Running unit tests:
poetry run python -m scripts.tests
Applying code styles:
poetry run python -m scripts.styles
Running code analysis:
poetry run python -m scripts.analyze
Running code coverage:
poetry run python -m scripts.tests-coverage
Running pre-commit hooks:
poetry run python -m scripts.pre-commit
Generate readme banner:
poetry run python -m scripts.banner
Docker
Build docker:
poetry run python -m scripts.docker-build
Image tag
sauljabin/kaskade:latest
.
Run with docker (create a config.yml
file):
docker run --rm -it --network kafka \
--volume $(pwd):/kaskade \
sauljabin/kaskade:latest
Bumping Version
Help:
poetry run python -m scripts.release --help
More info at https://python-poetry.org/docs/cli/#version and https://semver.org/.
Upgrade (major.minor.patch
):
poetry run python -m scripts.release patch
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file kaskade-0.2.9.tar.gz
.
File metadata
- Download URL: kaskade-0.2.9.tar.gz
- Upload date:
- Size: 18.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6284e9c0baffb49fc9d7b37225290d47af811b8ae392133d9368f7e45f2b7f2 |
|
MD5 | b59529f4eb191fa437ee77690d4fccfd |
|
BLAKE2b-256 | bafcf31e9c656fbaf0a6df1ed74be4f479049b7fba71013b4af9e9f15b183092 |
Provenance
File details
Details for the file kaskade-0.2.9-py3-none-any.whl
.
File metadata
- Download URL: kaskade-0.2.9-py3-none-any.whl
- Upload date:
- Size: 25.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a451bc3c7e9e5952fc0268e6b380b0725814d249f08bc64abbca999cdcadd71a |
|
MD5 | 802093f5142873fbd40c2e10abcc68b9 |
|
BLAKE2b-256 | 1b4289ae6bd2deb14d431a8ada3638f5fc41e816500752ae4fc27a1e522b70b6 |