Grafana Latency Query

I have a simple API application running and I’m using a custom Post manager to ‘PUT’ here periodically. My concern is that some of the ‘PUTS’ are taking over 50ms to complete . In Grafana I setup the following prom QL query to try and find these requests

(sum(rate(http_server_requests_seconds_bucket{exception=“None”, app=“Myapp”, method=“PUT”}[5m])) by (le) > 0.05)

It seems from the results i get back this is pulling in all promotheus buckets showing me all of them for the value of 0.05556? but not actually showing me all requests that are over 50ms.


Please help