{"id":13491079,"url":"https://github.com/linkedin/Burrow","last_synced_at":"2025-03-28T07:31:48.382Z","repository":{"id":33062731,"uuid":"36699285","full_name":"linkedin/Burrow","owner":"linkedin","description":"Kafka Consumer Lag Checking","archived":false,"fork":false,"pushed_at":"2025-03-13T04:41:17.000Z","size":1004,"stargazers_count":3825,"open_issues_count":243,"forks_count":802,"subscribers_count":128,"default_branch":"master","last_synced_at":"2025-03-25T17:15:23.725Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/linkedin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-06-02T01:15:25.000Z","updated_at":"2025-03-23T11:10:45.000Z","dependencies_parsed_at":"2023-01-14T23:14:13.353Z","dependency_job_id":"08e98e0f-53c7-4a9b-85ac-1bb1efc7583f","html_url":"https://github.com/linkedin/Burrow","commit_stats":{"total_commits":386,"total_committers":112,"mean_commits":"3.4464285714285716","dds":0.7797927461139896,"last_synced_commit":"8690c5844cab06601634bf21fa07591f951068fc"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linkedin%2FBurrow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linkedin%2FBurrow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linkedin%2FBurrow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linkedin%2FBurrow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linkedin","download_url":"https://codeload.github.com/linkedin/Burrow/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245989288,"owners_count":20705801,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T19:00:53.349Z","updated_at":"2025-03-28T07:31:46.251Z","avatar_url":"https://github.com/linkedin.png","language":"Go","readme":"[![Join the chat at https://gitter.im/linkedin-Burrow/Lobby](https://badges.gitter.im/linkedin-Burrow/Lobby.svg)](https://gitter.im/linkedin-Burrow/Lobby?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n[![Build Status](https://github.com/linkedin/Burrow/actions/workflows/ci.yml/badge.svg)]([https://travis-ci.org/linkedin/Burrow](https://github.com/linkedin/Burrow/actions/workflows/ci.yml/badge.svg))\n[![go report card](https://goreportcard.com/badge/github.com/linkedin/Burrow)](https://goreportcard.com/report/github.com/linkedin/Burrow)\n[![Coverage Status](https://coveralls.io/repos/github/linkedin/Burrow/badge.svg?branch=master)](https://coveralls.io/github/linkedin/Burrow?branch=master)\n[![GoDoc](https://godoc.org/github.com/linkedin/Burrow?status.svg)](https://godoc.org/github.com/linkedin/Burrow)\n\n# Burrow - Kafka Consumer Lag Checking\n\n\nBurrow is a monitoring companion for [Apache Kafka](http://kafka.apache.org) 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.\n\n## Features\n* NO THRESHOLDS! Groups are evaluated over a sliding window.\n* Multiple Kafka Cluster support\n* Automatically monitors all consumers using Kafka-committed offsets\n* Configurable support for Zookeeper-committed offsets\n* Configurable support for Storm-committed offsets\n* HTTP endpoint for consumer group status, as well as broker and consumer information\n* Configurable emailer for sending alerts for specific groups\n* Configurable HTTP client for sending alerts to another system for all groups\n\n## Getting Started\n### Prerequisites\nBurrow is written in Go, so before you get started, you should [install and set up Go](https://golang.org/doc/install). As the dependencies\nare managed using Go module, the lowest version of Go supported is 1.11, though we recommend using version 1.12 for development.\n\n### Build and Install\n```\n$ Clone github.com/linkedin/Burrow to a directory outside of $GOPATH. Alternatively, you can export GO111MODULE=on to enable Go module.\n$ cd to the source directory.\n$ go mod tidy\n$ go install\n```\n\n### Running Burrow\n```\n$ $GOPATH/bin/Burrow --config-dir /path/containing/config\n```\n\n### Using Docker\nA Docker file is available which builds this project on top of an Alpine Linux image.\nTo use it, build your docker container, mount your Burrow configuration into `/etc/burrow` and run docker.\n\nA [Docker Compose](docker-compose.yml) is also available for quick and easy development.\n\nInstall [Docker Compose](https://docs.docker.com/compose/) and then:\n\n1. Build the docker container:\n   ```\n   docker-compose build\n   ```\n\n2. Run the docker compose stack which includes kafka and zookeeper:\n   ```\n   docker-compose down; docker-compose up\n   ```\n\n3. Some test topics have already been created by default and Burrow can be accessed on `http://localhost:8000/v3/kafka`.\n\n\n### Configuration\nFor information on how to write your configuration file, check out the [detailed wiki](https://github.com/linkedin/Burrow/wiki)\n\n## License\nCopyright 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.\nYou may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\nCONDITIONS OF ANY KIND, either express or implied.\n","funding_links":[],"categories":["Go","Kafka 相关","Kafka","Libraries","Management \u0026 Monitoring","Operations"],"sub_categories":["Infrastructure from code","Kafka","Metrics \u0026 Exporters","Monitoring"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinkedin%2FBurrow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinkedin%2FBurrow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinkedin%2FBurrow/lists"}