-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instrument vertx client directly #311
Conversation
Signed-off-by: Pavol Loffay <[email protected]>
Signed-off-by: Pavol Loffay <[email protected]>
BoundedCharArrayWriter buffer = | ||
InstrumentationContext.get(MultiMap.class, BoundedCharArrayWriter.class) | ||
.get(request.headers()); | ||
if (buffer != null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dont we want to check if
(HypertraceConfig.get().getDataCapture().getHttpBody().getRequest().getValue()
&& ContentTypeUtils.shouldCapture(contentType))
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't have to check it here bc the buffer is null if the body shouldn't be captured.
buffer = BoundedBuffersFactory.createWriter(); | ||
contextStore.put(request.headers(), buffer); | ||
} | ||
buffer.write(chunk); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we calling this here and in EndRequestAdvice both?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, this writes a chunk and in the end method it as well writes a chunk and sends the request.
public void handle(Buffer event) { | ||
String responseBody = event.getString(0, event.length()); | ||
if (span.isRecording()) { | ||
span.setAttribute(HypertraceSemanticAttributes.HTTP_RESPONSE_BODY, responseBody); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we also check if we should capture response body?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not needed as this is reached only after the check from the previous instrumentation point.
53371f3
to
a3b1544
Compare
Signed-off-by: Pavol Loffay <[email protected]>
Signed-off-by: Pavol Loffay <[email protected]>
Signed-off-by: Pavol Loffay <[email protected]>
Signed-off-by: Pavol Loffay <[email protected]>
Signed-off-by: Pavol Loffay <[email protected]>
Signed-off-by: Pavol Loffay <[email protected]>
Resolves #310