Kubernetes API Server Dashboard is using wrong aggregations #16628
Labels
bug
candidate
Candidate to be added to the current iteration
Team:Platforms
Label for the Integrations - Platforms team
The following visualizations are using
sum
andderivative
togetherEach of these visualization is taking a
sum
ofkubernetes.apiserver.request.count
and then aderivative
.kubernetes.apiserver.request.count
IS a counter then you should be usingmax
with thederivative
.kubernetes.apiserver.request.count
is NOT a counter and you're trying to produce a rate, you will need to add acumlative_sum
to convert it to a monotonically increasing number then take thederivative
of that result; you will also need to provide aunit
so that it scales correctly.derivative
.I don't have any "actual" data for this metric but based on the field description this appears to be a counter. Either way, I'm confident that
sum
andderivative
are probably wrong.The text was updated successfully, but these errors were encountered: