Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Data Engineering Zoomcamp | 12,920 | 2 days ago | 44 | Jupyter Notebook | ||||||
Free Data Engineering course! | ||||||||||
Kubeshark | 8,527 | 2 days ago | 66 | apache-2.0 | Go | |||||
The API traffic analyzer for Kubernetes providing real-time K8s protocol-level visibility, capturing and monitoring all traffic and payloads going in, out and across containers, pods, nodes and clusters.. Think TCPDump and Wireshark re-invented for Kubernetes | ||||||||||
Kafka Docker | 6,521 | 5 days ago | 121 | apache-2.0 | Shell | |||||
Dockerfile for Apache Kafka | ||||||||||
Kafka Ui | 5,232 | 3 hours ago | 276 | apache-2.0 | Java | |||||
Open-Source Web UI for Apache Kafka Management | ||||||||||
Kafdrop | 4,378 | 9 hours ago | 49 | apache-2.0 | Java | |||||
Kafka Web UI | ||||||||||
Pipeline | 4,140 | 5 months ago | 85 | July 18, 2017 | 1 | apache-2.0 | Jsonnet | |||
PipelineAI Kubeflow Distribution | ||||||||||
Strimzi Kafka Operator | 3,723 | 2 | 4 hours ago | 34 | September 06, 2022 | 136 | apache-2.0 | Java | ||
Apache Kafka® running on Kubernetes | ||||||||||
Burrow | 3,408 | 21 days ago | 10 | February 03, 2022 | 219 | apache-2.0 | Go | |||
Kafka Consumer Lag Checking | ||||||||||
Dockerfiles | 2,964 | 5 days ago | 81 | Dockerfile | ||||||
:whale: A collection of delicious docker recipes 🇺🇦 | ||||||||||
Kafka Stack Docker Compose | 2,397 | 16 days ago | 9 | apache-2.0 | Shell | |||||
docker compose files to create a fully working kafka stack |
Burrow is a monitoring companion for Apache Kafka that provides consumer lag checking as a service without the need for specifying thresholds. It monitors committed offsets for all consumers and calculates the status of those consumers on demand. An HTTP endpoint is provided to request status on demand, as well as provide other Kafka cluster information. There are also configurable notifiers that can send status out via email or HTTP calls to another service.
Burrow is written in Go, so before you get started, you should install and set up Go. As the dependencies are managed using Go module, the lowest version of Go supported is 1.11, though we recommend using version 1.12 for development.
$ Clone github.com/linkedin/Burrow to a directory outside of $GOPATH. Alternatively, you can export GO111MODULE=on to enable Go module.
$ cd to the source directory.
$ go mod tidy
$ go install
$ $GOPATH/bin/Burrow --config-dir /path/containing/config
A Docker file is available which builds this project on top of an Alpine Linux image.
To use it, build your docker container, mount your Burrow configuration into /etc/burrow
and run docker.
A Docker Compose is also available for quick and easy development.
Install Docker Compose and then:
Build the docker container:
docker-compose build
Run the docker compose stack which includes kafka and zookeeper:
docker-compose down; docker-compose up
Some test topics have already been created by default and Burrow can be accessed on http://localhost:8000/v3/kafka
.
For information on how to write your configuration file, check out the detailed wiki
Copyright 2017 LinkedIn Corp. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.