Vlad Gorodetsky 1410fd6763 Test against Go 1.15 3 år sedan
..
consumergroup 1410fd6763 Test against Go 1.15 3 år sedan
http_server 7b7962675a add config setting 7 år sedan
interceptors 1410fd6763 Test against Go 1.15 3 år sedan
sasl_scram_client 25aedae6c3 fixed declaration dependencies and other lint issues (#1743) 3 år sedan
README.md 5ef34d779c remove example binary 3 år sedan

README.md

Sarama examples

This folder contains example applications to demonstrate the use of Sarama. For code snippet examples on how to use the different types in Sarama, see Sarama's API documentation on godoc.org

In these examples, we use github.com/Shopify/sarama as import path. We do this to ensure all the examples are up to date with the latest changes in Sarama. For your own applications, you may want to use gopkg.in/Shopify/sarama.v1 to lock into a stable API version.

HTTP server

http_server is a simple HTTP server uses both the sync producer to produce data as part of the request handling cycle, as well as the async producer to maintain an access log. It also uses the mocks subpackage to test both.

Interceptors

Basic example to use a producer interceptor that produces OpenTelemetry spans and add some headers for each intercepted message.