Closed
Description
Currently when enabling actuator with springdoc.show.actuator=true
there are some endpoints that use parameters in URL, e.g. /actuator/metrics/{requiredMetricName}
Due to way spring boot handles the actuator endpoints (single handler method, no @PathParam
) there is no possibility to input the requiredMetricName parameter.
Is there any workaround for this that would somehow enable inputing of this param or somehow edit the url manually?