Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xitonix/trubka
A CLI tool for Kafka
https://github.com/xitonix/trubka
cli golang kafka kafka-cli kafka-consumer kafka-manager kafka-producer kafka-producer-consumer kafka-publisher protobuf protobuf-parser protocol-buffer
Last synced: 4 days ago
JSON representation
A CLI tool for Kafka
- Host: GitHub
- URL: https://github.com/xitonix/trubka
- Owner: xitonix
- License: apache-2.0
- Created: 2019-07-05T02:02:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T23:25:15.000Z (over 1 year ago)
- Last Synced: 2024-08-01T13:33:05.001Z (3 months ago)
- Topics: cli, golang, kafka, kafka-cli, kafka-consumer, kafka-manager, kafka-producer, kafka-producer-consumer, kafka-publisher, protobuf, protobuf-parser, protocol-buffer
- Language: Go
- Homepage:
- Size: 818 KB
- Stars: 330
- Watchers: 14
- Forks: 18
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - xitonix/trubka - A CLI tool for Kafka (Go)
- awesome-go-extra - trubka - 07-05T02:02:25Z|2022-01-12T17:06:36Z| (Go Tools / DevOps Tools)
README
![GitHub release](https://img.shields.io/github/release/xitonix/trubka)
[![Build Status](https://travis-ci.com/xitonix/trubka.svg?branch=master)](https://travis-ci.com/xitonix/trubka)
[![Go Report Card](https://goreportcard.com/badge/github.com/xitonix/trubka)](https://goreportcard.com/report/github.com/xitonix/trubka)
[![Mentioned in Awesome Go](https://awesome.re/mentioned-badge.svg)](https://github.com/avelino/awesome-go#devops-tools)**Trubka** is a Kafka CLI tool built in [Go](https://go.dev/) which gives you everything you need to
* Manage, query and troubleshoot your Kafka clusters.
* Consume [protocol buffer](https://developers.google.com/protocol-buffers/) and plain text messages from Kafka.
* Publish protocol buffer and plain text messages to Kafka.## Documentation
- [Installation](https://github.com/xitonix/trubka/wiki)
- [Cluster Administration](https://github.com/xitonix/trubka/wiki/Cluster-Administration)
- [Consuming from Kafka](https://github.com/xitonix/trubka/wiki/Consume-from-Kafka)
- [Publishing to Kafka](https://github.com/xitonix/trubka/wiki/Publish-to-Kafka)## Acknowledgments
Special thanks to **Joshua Humphries** for building the
fascinating [protoreflect](https://github.com/jhump/protoreflect) package.I would also like to mention some of the amazing libraries and packages I used for building Trubka:
- [sarama](https://github.com/Shopify/sarama) by the Shopify team
- [kingpin](https://github.com/alecthomas/kingpin) and [chroma](https://github.com/alecthomas/chroma) by Alec Thomas
- [go-pretty](https://github.com/jedib0t/go-pretty) by Naveen Mahalingam
- [diskv](https://github.com/peterbourgon/diskv) by Peter Bourgon
- [gofakeit](https://github.com/brianvoe/gofakeit/) by Brian Voelker
- [go-humanize](https://github.com/dustin/go-humanize) by Dustin Sallings
- [confdir](https://github.com/kirsle/configdir) by Noah Petherbridge
- [go-homedir](https://github.com/mitchellh/go-homedir) by Mitchell Hashimoto