Fetch logs
A log serves as the record that captures every minute details of what your application did. Each entry in a log contains important information such as time, contextual messages, and log levels. All the log messages are captured in the sysout.
For Kubernetes deployment with/without Helm
To fetch DPG specific logs in Kubernetes deployment from sysout, you can use the following command:
kubectl logs <pod_name> -c <dpg_container_name>
For Standalone deployment
To fetch DPG specific logs in standalone deployment, use the following command:
docker logs <container_id>