trubka

command module
v0.0.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 6, 2019 License: Apache-2.0 Imports: 23 Imported by: 0

README

GitHub release Build Status Go Report Card

Trubka Is a CLI tool to consume protocol buffer messages from Kafka. The tool uses Joshua's brilliant protoreflect package under the hood to deserialise the protobuf bytes without the need to compile the messages into Go types.

Installation

macOS

brew tap xitonix/trubka
brew install trubka

Build from source

Clone the repo locally and build trubka from source. You can also use Make to compile the code.

Pre built binaries

Download the pre-built binaries for the platform of your choice from the releases page.

Usage

trubka --proto-root /protocol_buffers_dir --brokers localhost:9092 \
--topic TopicA --proto MessageA

Interactive mode

Trubka can also be executed in interactive mode using the -i flag. Interactive mode walks you though the steps of picking topic(s) and proto message type(s) from provided lists of exising topics, fetched from the server, and a list of protocol buffer messages, living in the --proto-root directory. If you have too many topics on the server, the list can be narrowed down using --topic-filter flag. The message type list could also be filtered using —type-filter flag.

trubka --proto-root /protocol_buffers_dir --brokers localhost:9092 \ 
--topic-filter Notifications --type-filter EmailSent
Note

topic-filter and type-filter flags are regular expressions.

Searching Messages

You can optionally define a regular expression using the -q flag to filter the messages consumed from Kafka. It's simply a string match on the string representation of the deserialised message content.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
cmd
producer command

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL