Data Discovery is currently in Private Preview and is not available for General Availability (GA). It should not be used in production environments, as features and functionality may change before the final GA release.
Viewing Application Logs
The application logs can be viewed using the following commands:
docker logs -f classification_service
docker logs -f context_provider
docker logs -f pattern_provider
Setting the Log Level and other logging configuration
The log level and other valid Python Logging configuration can be set in the .env file using JSON.
Run the following steps to set the overall logging level.
Navigate to the
docker_composedirectory.Edit the
.envfile.Uncomment the required logging configuration and set the logging level to one of the following:
- INFO
- DEBUG
- ERROR
- WARNING
For example, to change the log level for PATTERN_PROVIDER_LOGGING_CONFIG, configure the parameter as follows.
PATTERN_PROVIDER_LOGGING_CONFIG={"root":{"level":"ERROR"}}
Save the changes.
Run the folllwing command to undeploy the application.
docker compose down -d
- Run the following command to redeploy the application.
docker compose up -d