I am doing performance testing using jmeter for a spring boot service.
Inside this service, making some rest calls using RestTemplate. I am able to get response time for a spring boot service using JMeter, but I wanna know how much restcalls inside service consuming time, so how do I find out this?
The reason I am asking this bcoz, I should be very confident that actual boot service doesn't take much time, instead its rest call taking too much time to give response (incase if response is very slow)
EDITED: Is there any tool does show me the actual request takes 500ms and rest call took 300ms, any idea? I am really not asking about by keeping something in the code as t1 and t2 and at end t2 - t1, I am not asking this.