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
Viewing EKS application logs.
The application logs can be viewed using the following commands:
kubectl logs classification-deployment-{version} -n protegrity -f
kubectl logs roberta-provider-deployment-{version} -n protegrity -f
kubectl logs presidio-provider-deployment-{version} -n protegrity -f
Run the
kubectl get pods -n <namespace-name>command to obtain the version of the images.
Setting the Log Level and other Logging Configuration
Set the log level and other valid Python Logging configuration.
Navigate to the
helm/data-discovery-classificationdirectory in your downloaded deployment package.Create a
values-override.yamlfile with the required logging configuration.
classificationAppConfig:
loggingConfig:
root:
level: WARNING # Can be INFO, DEBUG, ERROR, or WARNING
Save the changes.
Run the following installation command.
helm install data-discovery-classification . \
--namespace default \
--create-namespace \
--wait \
--wait-for-jobs \
--timeout 900s \
-f values-override.yaml