Docs Home
Viewing docs for
Self-ManagedNot available for BYOC

Event Service

On this page

The event service stores events which are generated by the Ververica Platform during its operation. For long running deployments it can make sense to limit the number of stored events. By default, the Ververica Platform stores an unlimited amount of events.

Configuration

To control the cleanup of the event log, you can set the maximum number of stored events via maxNumberEvents. This limit will be applied per deployment, and only the most recent events will be kept. Additionally, you can configure the periodic cleanup interval via eventsCleanupInterval. Specify the interval using the Spring Duration conversion format.

YAML
1vvp:
2  event-service:
3    maxNumberEvents: 1337
4    eventsCleanupInterval: 15m
Was this helpful?