Skip to content

Watchlist Configuration

Qichao Chu edited this page Apr 9, 2026 · 1 revision

Watchlist Configuration

Static Watchlist (YAML)

Create a file like watchlist.yaml:

watchlist:
  - group: my-consumer-group
    topics:
      - events-topic
      - notifications-topic
    metadata:
      type: application

  - group: analytics-consumer
    topics:
      - clickstream-events

Set UGROUP_WATCHLIST_MODE=static and UGROUP_WATCHLIST_FILE=/path/to/watchlist.yaml.

Regex Filtering

Set UGROUP_WATCHLIST_MODE=regex and configure patterns:

ugroup:
  watchlist:
    mode: regex
    include-patterns:
      - "production-.*"
      - ".*-consumer$"
    exclude-patterns:
      - "test-.*"

Clone this wiki locally