Home > Software design >  Track API requests to each pod on my kubernetes cluster
Track API requests to each pod on my kubernetes cluster

Time:05-06

I am trying to track all API requests to my kubernetes cluster running on some ec2 instances. How do I go about doing this?

I tried using prometheus but have not had any luck so far.

CodePudding user response:

You can enable Auditing on your cluster.

CodePudding user response:

You can setup auditing in your Kubernetes Cluster. Refer to this link https://kubernetes.io/docs/tasks/debug/debug-cluster/audit/

  • Related