원클릭으로
logs
View and troubleshoot service logs and pod status
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
View and troubleshoot service logs and pod status
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Deploy services to the dev EKS namespace via ArgoCD (or kubectl for bootstrap)
Deploy services to the prod EKS namespace via ArgoCD (manual sync) with safety checks
Review Terraform code for security, best practices, and conventions
Roll back a failed deployment to the previous revision
Run Checkov security scan on Terraform modules
Run health checks against deployed services
| name | logs |
| description | View and troubleshoot service logs and pod status |
| disable-model-invocation | true |
| argument-hint | [service] [env] |
View logs and debug information for a service in the specified environment.
service — Service name (e.g., config-server, api-gateway, customers-service)env — Target environment: dev or prod (default: dev)Set the namespace based on environment:
dev → petclinic-devprod → petclinic-prodShow pod status for the service:
kubectl get pods -l app.kubernetes.io/name={service} -n petclinic-{env} -o wide
Show recent events for the pod:
kubectl describe pod -l app.kubernetes.io/name={service} -n petclinic-{env} | tail -30
Show logs (last 100 lines):
kubectl logs -l app.kubernetes.io/name={service} -n petclinic-{env} --tail=100
If the pod is in CrashLoopBackOff, show previous container logs:
kubectl logs -l app.kubernetes.io/name={service} -n petclinic-{env} --previous --tail=50
Show resource usage if metrics-server is available:
kubectl top pod -l app.kubernetes.io/name={service} -n petclinic-{env} 2>/dev/null || echo "Metrics server not available"
Present a summary:
## Logs: {service} ({env})
Pod Status: {Running/CrashLoopBackOff/Pending/etc.}
Restarts: {count}
Uptime: {age}
### Recent Events
{key events}
### Log Highlights
{errors/warnings from logs}
### Suggested Actions
{troubleshooting suggestions based on findings}