-
Notifications
You must be signed in to change notification settings - Fork 117
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
Support for fasthttp #133
Comments
@fpruitt2 We appreciate your input and will consider adding it to our roadmap. |
An acceptable alternative would be decoupling the tracking of a request's data from a specific http library-- being able to (easily) manually set up request tracking would be great! |
@fpruitt2 We would be happy to review any PRs if you want to contribute on this. |
fasthttp instrumentation support PR (#295 ) is merged and released so closing out this issue. |
Background
fasthttp
is an alternative to Go's nativenet/http
network library. It is written to be significantly more performant at scale; in some cases, it is ~10x faster than the standard library. It is used widely and is well-maintained.The Ask
It would be helpful if
aws-xray-sdk-go
could work out-of-the-box withfasthttp
. The interface in the request handlers is different enough to make it not trivial to use as-is.Links
fasthttp
net/http-->fasthttp adaptor
The text was updated successfully, but these errors were encountered: