Viewing Container Logs

All the BusinessConnect Container Edition component containers publish their logs on the standard output device.

To view logs of a particular container, run one of the following commands depending on the platform:

  • Docker:

    docker logs <containername>
  • Kubernetes:
    kubectl logs <container_id> -n <k8s_namespace>

    Where <k8s_namespace> is Kubernetes namespace that you have set in the deployment.properties file.

    Note: If <k8s_namespace> is not set, then its default value is bcce.
    Tip: To follow logs use --follow.