Skip to main content

Confluent

Causely can leverage Confluent's Telemetry API to observe the health of the data streaming platform.

To enable Confluent as a data source, please add the following section to your values.yaml file:

scrapers:
confluent:
enabled: true
secretName: confluent-secret

Optionally Causely can discover only specific Confluent environments or clusters by adding the environments field:

scrapers:
confluent:
enabled: true
secretName: confluent-secret
environments:
- dev
- prod
clusters:
- dev-cluster
- prod-cluster

confluent-secret.yaml

apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: confluent-secret
namespace: causely
stringData:
CONFLUENT_CLOUD_KEY: '<Cloud_Key>'
CONFLUENT_CLOUD_SECRET: '<Cloud_Secret>'