Skip to content

Commit b259c39

Browse files
committed
Adds linkedin/kafka-monitor, no need for a service
Instead you need some kind of metrics export. Currently I only get a lot of `records-produced-total` but no latencies etc.
1 parent 99d22ad commit b259c39

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apiVersion: apps/v1beta2
2+
kind: Deployment
3+
metadata:
4+
name: kafka-monitor
5+
namespace: kafka
6+
spec:
7+
replicas: 1
8+
selector:
9+
matchLabels:
10+
app: kafka-monitor
11+
template:
12+
metadata:
13+
labels:
14+
app: kafka-monitor
15+
spec:
16+
containers:
17+
- name: kafka-monitor
18+
image: solsson/kafka-monitor@sha256:12992f67379bc0850c977069d0283a9fb844e2f1b5530ca9525eea044b7f6b25
19+
ports:
20+
- name: http
21+
containerPort: 8000
22+
- name: metrics
23+
containerPort: 8778

0 commit comments

Comments
 (0)