UI for Apache Kafka
GithubDiscord
  • 🎓Overview
    • About
    • Features
    • Getting started
  • 🛣️Project
    • Code of Conduct
    • Roadmap
  • 🧱Development
    • Contributing
    • Setting up git
    • Building
      • Prerequisites
      • With Docker
      • Without Docker
    • WIP: Testing
  • ⚡Quick Start
    • 🔍Prerequisites
      • Kafka Permissions
        • Standalone Kafka ACLs
        • MSK (+Serverless) Setup
    • Demo run
    • AWS Marketplace
    • Persistent start
    • K8s / Helm
  • 🛠️Configuration
    • Configuration wizard
    • Configuration file
    • Compose examples
    • Helm charts
      • Quick start
      • Configuration
        • SSL example
      • Resource limits
      • Sticky sessions
    • Misc configuration properties
    • Complex configuration examples
      • Kraft mode + multiple brokers
    • Kafka w/ SSL
    • Authentication
      • Basic Authentication
      • OAuth2
      • AWS IAM
      • LDAP / Active Directory
      • SSO Guide
      • SASL_SCRAM
    • RBAC (Role based access control)
      • Supported Identity Providers
    • Data masking
    • Audit log
    • Serialization / SerDe
    • OpenDataDiscovery Integration
  • ❓FAQ
    • Common problems
    • FAQ
Powered by GitBook
On this page
  • Basic (username password) authentication
  • Role-based access control
  • OAuth 2
  • LDAP
  • Active Directory (LDAP)
  • SAML
  • Smart filters syntax
  • Can I use the app as API?

Was this helpful?

Edit on GitHub
Export as PDF
  1. FAQ

FAQ

PreviousCommon problems

Last updated 2 years ago

Was this helpful?

Basic (username password) authentication

Basic Authentication

Role-based access control

RBAC (Role based access control)

OAuth 2

OAuth2

LDAP

See example.

Active Directory (LDAP)

See example.

SAML

Planned, see

Smart filters syntax

Variables bound to groovy context: partition, timestampMs, keyAsText, valueAsText, header, key (json if possible), value (json if possible).

JSON parsing logic:

Key and Value (if they can be parsed to JSON) they are bound as JSON objects, otherwise bound as nulls.

Sample filters:

  1. keyAsText != null && keyAsText ~"([Gg])roovy" - regex for key as a string

  2. value.name == "iS.ListItemax" && value.age > 30 - in case value is json

  3. value == null && valueAsText != null - search for values that are not nulls and are not json

  4. headers.sentBy == "some system" && headers["sentAt"] == "2020-01-01"

  5. multiline filters are also allowed:

def name = value.name
def age = value.age
name == "iliax" && age == 30

Can I use the app as API?

Yes, you can. Swagger declaration is located .

❓
this
this
#478
here