Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the "Dropped Requests" panel of Kubernetes API Server Details
This panel was not showing any data in different Kubernetes versions for 2 reasons: - apiserver_dropped_requests_total was removed from the allowlist, see gardener#3502. This means that this panel was not showing any data in any Kubernetes version. - apiserver_dropped_requests_total is deprecated in 1.24 and removed in 1.25. So in Kubernetes clusters >= 1.25, this panel would have been empty for this reason as well. The replacement metric `apiserver_request_terminations_total`, is already allowlisted and available since Kubernetes v1.17, so we can simply use that for a semantically similar query. Co-authored-by: Istvan Zoltan Ballok <[email protected]> Co-authored-by: Jeremy Rickards <[email protected]>
- Loading branch information