How do I gather Kong Ingress Controller metrics?
By default, the Kong Ingress Controller exposes a /metrics endpoint over port 10255.
-
Port forward the controller pod on port
10255:kubectl port-forward -n kong <KIC pod name> 10255:10255 -
Query the metrics endpoint:
curl http://localhost:10255/metrics
The output lists all available metrics with an explanation of their meanings. To export these metrics to Prometheus, see the Prometheus and Grafana documentation.