-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed as not planned
Labels
enhancementA general enhancementA general enhancement
Description
Metrics http_server_requests_seconds_count in Spring Boot application with version 2.0.8.Release exposed using spring actuator contains uri as "UNKNOWN". Spring Boot application is using cxf-spring-boot-starter-jaxrs for exposing rest endpoints.
I have added micrometer-registry-prometheus dependency in my project.
http_server_requests_seconds_count{exception="None",method="POST",status="200",uri="UNKNOWN",} 2.0
Actual
http_server_requests_seconds_count{exception="None",method="POST",status="200",uri="UNKNOWN",} 2.0
Expected:
http_server_requests_seconds_count{exception="None",method="GET",status="200",uri="/sayHello",} 2.0
micrometer-cxf implementation i believe similiar to micrometer-jersey2 should resolve the issue.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementA general enhancementA general enhancement