I've tried to find a documentation about the metrics exposed by the NGINX ingress controller in Kubernetes but so far I haven't found any reliable source about the metrics and what they mean.
For example, there are three different request_size
metrics (sum
, bucket
, count
).
From my guessing sum
and count
correlate with each other. And to get the average request size I could probably do something like sum by (method) (request_size_sum{...}) / sum by (method) (request_size_count{...})
.
But what about bucket
and especially what is le
?