/msapi/riskassessment/v1/readiness
When we send in requests for these rest calls, the transactions page in glowroot is caturing those calls under "/msapi" only. Only for some trans it captures the extire context path and I was not able to figure out under what scenarios it is capturing the exact path for some transactions. Same with errors and slow traces, they do not show the exact context path.
Here how the resource is defined ...
@Api(value = "/riskassessment/v1")
@Path("/")
@Produces({MediaType.APPLICATION_JSON})
public interface OnlineFraudResource {
@GET
@Path("/onlineFraud/execute")
@Consumes({MediaType.APPLICATION_JSON})
public Response executeOnlineFraud();
@GET
@Path("/onlineFraud/result")
@Consumes({MediaType.APPLICATION_JSON})
public Response resultOnlineFraud();
}
This is an issue for our clients since they want to know the performance of specific apis.
Is that a bug in glowroot? I have attached the screen shots to show the transactions for the api.
Thanks,
Pavani