
Apache Kafka QuotaDescribe
CertifiedDescribe Kafka client quotas
Apache Kafka QuotaDescribe
Describe Kafka client quotas
Lists client quotas (producer_byte_rate, consumer_byte_rate, request_percentage, controller_mutation_rate) matching an entity filter using the Kafka AdminClient.
Describes every quota on the cluster when no entity filter is set.
type: io.kestra.plugin.kafka.QuotaDescribeExamples
Inspect the quotas applied to a tenant service account
id: kafka_quota_describe
namespace: company.team
tasks:
- id: describe_quota
type: io.kestra.plugin.kafka.QuotaDescribe
properties:
bootstrap.servers: localhost:9092
entityUser: tenant-acme-svc
Properties
properties *Requiredobject
Kafka AdminClient properties
Must include bootstrap.servers; accepts any Kafka AdminClient config. Provide base64-encoded content for ssl.keystore.location and ssl.truststore.location when using SSL.
entityClientId string
Client ID entity name
entityIp string
IP entity name
entityUser string
User entity name
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
timeout string
PT30SAdminClient call timeout
Maximum duration to wait for each AdminClient operation to complete before failing the task. Defaults to PT30S (30 seconds).
Outputs
quotas array
Matching quota entities
Each entry contains entity (keys among user, client-id, ip) and quotas (keys among producer_byte_rate, consumer_byte_rate, request_percentage, controller_mutation_rate).