-
Notifications
You must be signed in to change notification settings - Fork 0
Configuration File Reference
Ahmed edited this page Mar 16, 2026
·
2 revisions
EventLens loads its runtime behavior from a YAML configuration file.
-
EVENTLENS_CONFIGenvironment variable -
./eventlens.yamlin the working directory ~/.eventlens/config.yaml/etc/eventlens/config.yaml
server:
port: 9090
allowed-origins:
- "http://localhost:9090"
auth:
enabled: false
username: admin
password: changeme
datasource:
url: jdbc:postgresql://postgres:5432/your_db_name
username: your_user
password: your_password
table: eventlens_events # Postgres View name
columns:
event-id: event_id
aggregate-id: aggregate_id
aggregate-type: aggregate_type
sequence: sequence_number
event-type: event_type
payload: payload
timestamp: timestamp
global-position: global_position
kafka:
bootstrap-servers: localhost:9092
topic: domain-events
replay:
default-reducer: generic
anomaly:
scan-interval-seconds: 60
rules: []
ui:
theme: dark # dark | lightSee Database Schema Requirements, Kafka Integration, and Anomaly Detection Rules for more granular configuration options.