forked from linkedin/Burrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding association between a Kafka cluster and a notifier
Signed-off-by: muicoder <[email protected]> linkedin#611 Adding WeCom/DingTalk template
- Loading branch information
Showing
15 changed files
with
235 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
env: | ||
BASE64manifest: IyEvYmluL3NoCgpDTUQ9JChpZiBidWlsZGFoID4vZGV2L251bGw7IHRoZW4gZWNobyBidWlsZGFoOyBlbGlmIHNlYWxvcyA+L2Rldi9udWxsOyB0aGVuIGVjaG8gc2VhbG9zOyBmaSkKTUY9Im1mOiQoZGF0ZSArJUYpIgoKUkVQTz0iJHsxOi1kb2NrZXIuaW8vYml0bmFtaS9tZXRyaWNzLXNlcnZlcjpkb2NrZXIuaW8vbXVpY29kZXIvbWV0cmljcy1zZXJ2ZXJ9IgpUQUdTPSIkezI6LTAuNi4zfSIKVEFHPSIkezM6LSRUQUdTfSIKCmlmIFsgIiR7UkVQTyU6Kn0iICE9ICIkUkVQTyIgXTsgdGhlbgogIGlmIFsgIiR7VEFHUyUsKn0iICE9ICIkVEFHUyIgXTsgdGhlbgogICAgZWNobyAiJFRBR1MiIHwgc2VkICJzfix+XG5+ZyIgfCB3aGlsZSByZWFkIC1yIHRhZzsgZG8KICAgICAgZWNobyAiJHtSRVBPJToqfTokdGFnIgogICAgZG9uZSB8ICRDTUQgcHVsbAogIGVsc2UKICAgICRDTUQgcHVsbCAtLXBvbGljeT1hbHdheXMgLS1wbGF0Zm9ybT1saW51eC9hbWQ2NCAiJHtSRVBPJToqfTokVEFHUyIKICAgICRDTUQgdGFnICIke1JFUE8lOip9OiRUQUdTIiAiJHtSRVBPIyo6fTokVEFHUy1hbWQ2NCIKICAgICRDTUQgcHVsbCAtLXBvbGljeT1hbHdheXMgLS1wbGF0Zm9ybT1saW51eC9hcm02NCAiJHtSRVBPJToqfTokVEFHUyIKICAgICRDTUQgdGFnICIke1JFUE8lOip9OiRUQUdTIiAiJHtSRVBPIyo6fTokVEFHUy1hcm02NCIKICAgIFRBR1M9IiRUQUdTLWFtZDY0LCRUQUdTLWFybTY0IgogIGZpCmZpCgplY2hvICIkVEFHUyIgfCBzZWQgInN+LH5cbn5nIiB8IHdoaWxlIHJlYWQgLXIgdGFnOyBkbwogIGVjaG8gIiR7UkVQTyMqOn06JHRhZyIKZG9uZSB8IHhhcmdzICRDTUQgbWFuaWZlc3QgY3JlYXRlIC0tYWxsICIkTUYiCiRDTUQgbWFuaWZlc3QgcHVzaCAtLWFsbCAiJE1GIiAiZG9ja2VyOi8vJHtSRVBPIyo6fTokVEFHIgokQ01EIG1hbmlmZXN0IHJtICIkTUYiIHx8IHRydWUK | ||
jobs: | ||
aio-manifest: | ||
needs: | ||
- build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
- name: manifest | ||
run: echo ${{ env.BASE64manifest }} | base64 -d | sh -s docker.io/${{ secrets.DOCKERHUB_USERNAME }}/burrow action-amd64,action-arm64 action | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Build artifacts | ||
run: make update && git diff | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
file: Dockerfile | ||
platforms: ${{ matrix.os}}/${{ matrix.arch}} | ||
provenance: false | ||
pull: true | ||
push: true | ||
sbom: false | ||
tags: ${{ secrets.DOCKERHUB_USERNAME }}/burrow:action-${{ matrix.arch}} | ||
strategy: | ||
matrix: | ||
arch: | ||
- arm64 | ||
- amd64 | ||
os: | ||
- linux | ||
name: build | ||
on: | ||
workflow_dispatch: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
on: [pull_request] | ||
|
||
jobs: | ||
test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{"msgtype": "markdown","markdown": {"title":"Kafka LagChecker", "text": " | ||
{{- $StatusURL := "https://pkg.go.dev/github.com/linkedin/Burrow/core/protocol#StatusConstant"}} | ||
{{- $FormatString := "2006-01-02 15:04:05"}} | ||
# Kafka: {{.Cluster}} | ||
ConsumerGroup: {{.Group}}{{- with .Result.Status}} | ||
{{- if eq . 0}}NotFound{{end}} | ||
{{- if eq . 1}}normal{{end}} | ||
{{- if eq . 2}}lagging{{end}} | ||
{{- if eq . 3}}abnormal{{end}} | ||
{{- end}} | ||
**Status:** Total(Partitions={{.Result.TotalPartitions}},Lag={{.Result.TotalLag}})[{{- with .Result.Status}} | ||
{{- if eq . 0}}NotFound{{end}} | ||
{{- if eq . 1}}{{.}}{{end}} | ||
{{- if eq . 2}}{{.}}{{end}} | ||
{{- if eq . 3}}{{.}}{{end}} | ||
{{- end}}]({{$StatusURL}}){{printf "%.2f" .Result.Complete}} | ||
{{- if .Result.Maxlag|maxlag}} | ||
**MaxLagDetails:** | ||
{{- with .Result.Maxlag}} | ||
{{.Topic}}[{{.Status.String}}](){{printf "%.2f" .Complete}} | ||
{{- if .Owner}}\n\tConsumerHost={{.Owner}}{{end}} | ||
{{- if .ClientID}}\n\tConsumerClientID={{.ClientID}}{{end}} | ||
\tCurrentLag={{.CurrentLag}} | ||
\tPartition={{.Partition}} | ||
{{- end}} | ||
{{- end}} | ||
{{- $TotalErrors := len .Result.Partitions}} | ||
{{- if $TotalErrors}} | ||
### {{$TotalErrors}} partitions have problems | ||
>**CountPartitions:** | ||
{{- range $k,$v := .Result.Partitions|partitioncounts}} | ||
{{- if ne $v 0}}\n\t{{$k}}={{$v}}{{end}} | ||
{{- end}} | ||
**TopicsByStatus:** | ||
{{- range $k,$v := .Result.Partitions|topicsbystatus}} | ||
\t{{$k}}={{$v}} | ||
{{- end}} | ||
**PartitionDetails:** | ||
{{- range .Result.Partitions}} | ||
{{.Topic}}[{{.Status.String}}](){{printf "%.2f" .Complete}} | ||
{{- if .Owner}}\n\tConsumerHost={{.Owner}}{{end}} | ||
{{- if .ClientID}}\n\tConsumerClientID={{.ClientID}}{{end}} | ||
\tCurrentLag={{.CurrentLag}} | ||
\tPartition={{.Partition}} | ||
\tStart={{formattimestamp .Start.Timestamp $FormatString}} | ||
\t\tOffset={{.Start.Offset}}\tLag={{.Start.Lag.Value}} | ||
\tEnd={{formattimestamp .End.Timestamp $FormatString}} | ||
\t\tOffset={{.End.Offset}}\tLag={{.End.Lag.Value}} | ||
{{- end}} | ||
{{- end}} | ||
" | ||
}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{"msgtype": "markdown","markdown": {"content": " | ||
{{- $StatusURL := "https://pkg.go.dev/github.com/linkedin/Burrow/core/protocol#StatusConstant"}} | ||
{{- $FormatString := "2006-01-02 15:04:05"}} | ||
# Kafka: {{.Cluster}} | ||
ConsumerGroup: {{.Group}}{{- with .Result.Status}} | ||
{{- if eq . 0}}NotFound{{end}} | ||
{{- if eq . 1}}<font color=\"info\">normal</font>{{end}} | ||
{{- if eq . 2}}<font color=\"warning\">lagging</font>{{end}} | ||
{{- if eq . 3}}<font color=\"comment\">abnormal</font>{{end}} | ||
{{- end}} | ||
**Status:** Total(Partitions={{.Result.TotalPartitions}},Lag={{.Result.TotalLag}})[{{- with .Result.Status}} | ||
{{- if eq . 0}}NotFound{{end}} | ||
{{- if eq . 1}}<font color=\"info\">{{.}}</font>{{end}} | ||
{{- if eq . 2}}<font color=\"warning\">{{.}}</font>{{end}} | ||
{{- if eq . 3}}<font color=\"comment\">{{.}}</font>{{end}} | ||
{{- end}}]({{$StatusURL}}){{printf "%.2f" .Result.Complete}} | ||
{{- if .Result.Maxlag|maxlag}} | ||
**MaxLagDetails:** | ||
{{- with .Result.Maxlag}} | ||
{{.Topic}}[{{.Status.String}}](){{printf "%.2f" .Complete}} | ||
{{- if .Owner}}\n\tConsumerHost={{.Owner}}{{end}} | ||
{{- if .ClientID}}\n\tConsumerClientID={{.ClientID}}{{end}} | ||
\tCurrentLag={{.CurrentLag}} | ||
\tPartition={{.Partition}} | ||
{{- end}} | ||
{{- end}} | ||
{{- $TotalErrors := len .Result.Partitions}} | ||
{{- if $TotalErrors}} | ||
### <font color=\"comment\">{{$TotalErrors}} partitions have problems</font> | ||
>**CountPartitions:** | ||
{{- range $k,$v := .Result.Partitions|partitioncounts}} | ||
{{- if ne $v 0}}\n\t{{$k}}={{$v}}{{end}} | ||
{{- end}} | ||
**TopicsByStatus:** | ||
{{- range $k,$v := .Result.Partitions|topicsbystatus}} | ||
\t{{$k}}={{$v}} | ||
{{- end}} | ||
**PartitionDetails:** | ||
{{- range .Result.Partitions}} | ||
{{.Topic}}[{{.Status.String}}](){{printf "%.2f" .Complete}} | ||
{{- if .Owner}}\n\tConsumerHost={{.Owner}}{{end}} | ||
{{- if .ClientID}}\n\tConsumerClientID={{.ClientID}}{{end}} | ||
\tCurrentLag={{.CurrentLag}} | ||
\tPartition={{.Partition}} | ||
\tStart={{formattimestamp .Start.Timestamp $FormatString}} | ||
\t\tOffset={{.Start.Offset}}\tLag={{.Start.Lag.Value}} | ||
\tEnd={{formattimestamp .End.Timestamp $FormatString}} | ||
\t\tOffset={{.End.Offset}}\tLag={{.End.Lag.Value}} | ||
{{- end}} | ||
{{- end}} | ||
" | ||
}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.