Basic
Repositories are the storages where the event audit logs are stored. There are a few basic repositories, that you can use out of the box:
redis
- the default repository, stores logs in Redis.postgres
- stores logs in a PostgreSQL database.cloudwatch
- stores logs in AWS CloudWatch.
You can also implement your own repository. To do this, you need to create a new class that inherits from the AbstractRepository
class and implement all the required methods.
See the abstract repository documentation and custom repository documentation for more information.