Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(o11y): Enable JMX stats collection for Kafka #113

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/operator-wandb/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ dependencies:
version: 18.19.4
- name: kafka
repository: https://charts.bitnami.com/bitnami
version: 25.3.5
version: 28.0.4
- name: otel
repository: file://charts/otel
version: 0.1.0
- name: flat-run-fields-updater
repository: file://charts/flat-run-fields-updater
version: 0.1.0
digest: sha256:72ce111a55d35fac65edc81862f81dd1c0a6ad747aa2a6b2522966f91b27c814
generated: "2024-03-26T20:48:42.072569696Z"
digest: sha256:a48a5077b8fc6f5fa2bf54c3b1c99285ef07b26383c500e6fad9aa916e89aeeb
generated: "2024-04-12T14:45:10.302362-07:00"
4 changes: 2 additions & 2 deletions charts/operator-wandb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: operator-wandb
description: A Helm chart for deploying W&B to Kubernetes
type: application
version: 0.12.6
version: 0.12.7
appVersion: 1.0.0
icon: https://wandb.ai/logo.svg

Expand Down Expand Up @@ -41,7 +41,7 @@ dependencies:
condition: redis.install
repository: https://charts.bitnami.com/bitnami
- name: kafka
version: "25.*.*"
version: "28.*.*"
condition: kafka.install
repository: https://charts.bitnami.com/bitnami
- name: otel
Expand Down
20 changes: 20 additions & 0 deletions charts/operator-wandb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -225,3 +225,23 @@ kafka:
kraft:
# This field is a UUID. It is *strongly* recommended to supply a new UUID yourself for production installs.
clusterId: "ffFF1H3AQKGdBnsqAbJKew"
metrics:
kafka:
enabled: true
jmx:
enabled: true
controller:
podAnnotations:
ad.datadoghq.com/kafka.checks: |
{
"kafka": {
"init_config": {
"is_jmx": true,
"collect_default_metrics": true
},
"instances": [{
"host": "%%host%%",
"port": "5555"
}]
}
}
Loading