How to enable system events in helm chart?
To enable system events in Tracardi, you need to adjust the configuration settings in the values.yaml
file. Here’s how
you can do it:
-
Locate the
values.yaml
file: This file contains the configuration settings for Tracardi. If you don't already have a customvalues.yaml
file, you will need to create one by copying the default settings and then making the necessary modifications. -
Modify the configuration to enable system events: In the
values.yaml
file, find theconfig
section and set thesystemEvents
field to"yes"
.
Here is an example of what the relevant part of your values.yaml
file should look like:
config:
multiTenant:
multi: "yes" # Enable multi-tenancy if needed
primaryId: "emm-" # Set the primary ID prefix if needed
systemEvents: "yes" # Enable system events
enableVisitEnded: "no" # Enable visit ended events if needed
visit:
close: 1800 # Set visit close time to 1800 seconds (30 minutes)
- Deploy the changes: After modifying the
values.yaml
file, deploy the changes to your Tracardi instance. The exact method of deployment will depend on your environment. For example, if you are using Helm, you can use the following command to apply the changes:
By setting systemEvents
to "yes"
, you enable the system events in Tracardi, allowing the platform to generate and
handle internal events that provide insights into various operations and activities within the system.