Hello @sai theja
-You can check the logs of AGIC pod via kubectl logs command:
#kubectl logs -l appgw-ingress=true -n <namespace-name> --tail=100
//This command will retrieve the last 100 lines of logs for the AGIC pod, and will filter the pod based on the label appgw-ingress=true.
-You can also use the --since flag to get logs since specific time or duration.
kubectl logs -l appgw-ingress=true -n ingress-basic --since=5m // it will retrieve you the logs for the past 5 minutes
-Real time logs with -f flag:
**kubectl logs -f -l appgw-ingress=true -n ingress-basic
**
Please "Accept as Answer" and Upvote if it helped, so that it can help others in the community looking for help on similar topics.
Thank you!