I have a service which handles quite a big amount of REST requests (arount 500k per hour). Most of these calls are GET request with diffrent URLs. To grab metrics from the service I'm using Spring Boot Actuator (services are writen with spring boot 2.0 ) with micrometer and prometheus. So on path: /actuator/prometheus I have all metrics for prometheus.
Now after around 10 min my services stop serving metric, and it could be because there are a lot of different URLs which cause a lot of http_server_requests_seconds_sum metrics.
I want to disable this metric, or maybe group it for all endpoints.