Skip to main content
Version: Next

Configuration

In this section, the configuration of the analytics data plane is explained. Configuration is used based on a config.yaml file which should be placed in the apps/backend folder. This config.yaml file is loaded when booting the application. The values get type checked, and it gives a clear error message if there is a configuration field missing or provided incorrectly. Next to the config.yaml file, you can also set environment variables. These override the values that are listed in the config.yaml file.

Databases

By default, the development database is sqlite. We use postgres databases for production type instances of the analytics data planes.

Authentication

Authentication for frontend services can be done via OAuth. This helps users who need to login to several components to authenticate themselves faster. The data plane is tested against the SSO Bridge, with an Helm chart provided alongside the Helm chart of the data plane, but other OAuth services should be usable (e.g. Keycloak, or hosted OAuth services).

Configuration parameters

KeyRequiredTypeDescriptionDefault
DatabaseConfig
dbDatabaseConfigDatabase configuration
db.type"sqlite" | "postgres"Type of database
db.databaseStringName of the database
db.synchronizeYesBooleanSynchronize database schema
db{type=sqlite}SQLiteConfigDatabase configuration
db{type=sqlite}.type"sqlite" | "postgres"Type of database"sqlite"
db{type=sqlite}.databaseStringName of the database
db{type=sqlite}.synchronizeYesBooleanSynchronize database schema
db{type=postgres}PostgresConfigDatabase configuration
db{type=postgres}.hostStringHost of the database
db{type=postgres}.portNumberPort of the database
db{type=postgres}.usernameStringUsername of the database
db{type=postgres}.passwordStringPassword of the database
db{type=postgres}.sslYesUnknownSSL configuration of the database
db{type=postgres}.type"sqlite" | "postgres"Type of database"postgres"
db{type=postgres}.databaseStringName of the database
db{type=postgres}.synchronizeYesBooleanSynchronize database schema
ServerConfig
serverYesServerConfigServer configuration
server.listenYesStringIP address the server listens on"0.0.0.0"
server.portYesNumberPort the server listens on3000
server.publicDomainYesStringPublic domain of the server"localhost"
server.publicAddressYesStringPublic address of the server"http://localhost:3000"
server.subPathYesStringSub path of the server
AuthConfig
authAuthConfigManagement authentication configuration
auth.enabledBooleanEnable authenticationtrue
auth.openIdConfigurationURLYesStringOpenID configuration URL
auth.callbackURLYesURLCallback URL the auth service will redirect users
auth.redirectURLYesURLRedirect URL to UI after login/logout
auth.clientIdYesStringClient ID
auth.clientSecretYesStringClient secret
auth.rolePathYesStringJSON path to extract roles from the token"$.roles[*]"
ControlPlaneConfig
controlPlaneControlPlaneConfigControl plane configuration
controlPlane.dataPlaneEndpointURLData plane management endpoint
controlPlane.managementEndpointURLControl plane management endpoint
controlPlane.controlEndpointURLPublic control plane endpoint
controlPlane.initializationDelayNumberInitialization delay in milliseconds5000
datasetYesArrayDataset configuration
LoggingConfig
loggingYesLoggingConfigLogging configuration
logging.debugYesBooleanEnable debug request logging
FilesConfig
filesYesFilesConfigFiles configuration
files.pathYesStringPath to store uploaded files"/uploads"
RuntimeConfig
runtimeRuntimeConfigRuntime configuration
runtime.colorStringPrimary UI color"#3B8BF6"
runtime.lightThemeUrlYesStringLight theme logo URL
runtime.darkThemeUrlYesStringDark theme logo URL
KubernetesConfig
kubernetesConfigYesKubernetesConfigKubernetes configuration
kubernetesConfig.namespaceYesStringKubernetes namespace"default"