Viewing streaming logs
Once your application builds and runs in either regular or development mode, you'll be able to monitor logs streaming from your application from within your IDE.
You can also view logs from a specific resource (a pod, a deployment, etc.) by navigating to the Kubernetes Explorer.
To view logs from a specific resource, follow these steps:
Navigate to the Kubernetes Explorer. It can be accessed either from the side panel on the right or using Tools > Cloud Code > Kubernetes > View Cluster Explorer.
Select the resource you'd like to see logs from, such as a pod, a deployment, or a service.
Right-click the resource and select Stream Logs. Alternatively, you can stream logs for individual containers running in pods.
This will output logs to the Kubernetes Explorer Console.
Checking on resources
Additionally, from within the Kubernetes explorer, you can check up on the status of your deployment in the following ways:
Pod, deployment and node statuses: These Kubernetes resources will have colored status marks next to their labels; red for failed state, yellow for starting/terminating/warning, and green for healthy, desired state.
Deployed resource descriptions: You can run a
kubectl describe
on your deployed resources to display its details by right-clicking and choosing Describe.