use of com.newrelic.api.agent.Segment in project newrelic-java-agent by newrelic.
the class WSRequest_Instrumentation method setBody.
public WSRequest_Instrumentation setBody(JsonNode body) {
Segment currentSegment = StandaloneWSRequest_Instrumentation.class.cast(this).segment;
StandaloneWSRequest_Instrumentation.class.cast(this).segment = null;
WSRequest_Instrumentation result = Weaver.callOriginal();
StandaloneWSRequest_Instrumentation.class.cast(result).segment = currentSegment;
return result;
}
use of com.newrelic.api.agent.Segment in project newrelic-java-agent by newrelic.
the class WSRequest_Instrumentation method post.
public CompletionStage<WSResponse> post(InputStream body) {
Segment currentSegment = StandaloneWSRequest_Instrumentation.class.cast(this).segment;
CompletionStage<WSResponse> responseFuture = Weaver.callOriginal();
responseFuture = tryRecordExternalRequest("post", responseFuture, currentSegment);
return responseFuture;
}
use of com.newrelic.api.agent.Segment in project newrelic-java-agent by newrelic.
the class WSRequest_Instrumentation method setBody.
public WSRequest_Instrumentation setBody(File body) {
Segment currentSegment = StandaloneWSRequest_Instrumentation.class.cast(this).segment;
StandaloneWSRequest_Instrumentation.class.cast(this).segment = null;
WSRequest_Instrumentation result = Weaver.callOriginal();
StandaloneWSRequest_Instrumentation.class.cast(result).segment = currentSegment;
return result;
}
use of com.newrelic.api.agent.Segment in project newrelic-java-agent by newrelic.
the class WSRequest_Instrumentation method put.
public CompletionStage<WSResponse> put(JsonNode body) {
Segment currentSegment = StandaloneWSRequest_Instrumentation.class.cast(this).segment;
CompletionStage<WSResponse> responseFuture = Weaver.callOriginal();
responseFuture = tryRecordExternalRequest("put", responseFuture, currentSegment);
return responseFuture;
}
use of com.newrelic.api.agent.Segment in project newrelic-java-agent by newrelic.
the class WSRequest_Instrumentation method setHeader.
public WSRequest_Instrumentation setHeader(String name, String value) {
Segment currentSegment = StandaloneWSRequest_Instrumentation.class.cast(this).segment;
StandaloneWSRequest_Instrumentation.class.cast(this).segment = null;
WSRequest_Instrumentation result = Weaver.callOriginal();
StandaloneWSRequest_Instrumentation.class.cast(result).segment = currentSegment;
return result;
}
Aggregations