Page cover

Troubleshooting

No Container Logs

  • Check that the app emits logs and annotation is present

  • Check index name and provided api_key are correct

  • Check logstash pod logs

kubectl -n <namespace> logs <logstash_pod_name> --tail=200

No Audit Logs

  • Ensure query is correct, referring to the fields reference for kubernetes audit logs

  • Check index name and provided api_key are correct

kubectl -n <namespace> logs <logstash_pod_name> --tail=200

Logstash Pod Issues

  • Describe pod for errors:

kubectl -n <namespace> describe pod <logstash_pod_name>
  • Check cluster events

kubectl -n <namespace> get events --sort-by=.metadata.creationTimestamp

Last updated