-
Notifications
You must be signed in to change notification settings - Fork 573
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
Add AWS X-Ray ID Generator #459
Conversation
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.
Please create a separate module for idgenerator/aws
. This should ensure that it can be imported independently and doesn't result in additional imports for users of contrib packages that don't use it.
Hi @Aneurysm9, I've added a separate module for
I'm assuming I didn't add a line for the dependabot somewhere, but not sure where to add this check. Could you point me in the right direction? Thank you! |
You'll need to update |
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.
Thanks, this generally looks good. I left a comment about the package's place.
1b5a5c9
to
62a60ba
Compare
@MrAlias @Aneurysm9 can you please re-review @wilguo's changes and merge? We're blocked on this. Ty! |
@Aneurysm9 I have reverted the commit, but the circlci is failing, is there a step I'm missing? |
40454ab
to
fb1ebbf
Compare
fb1ebbf
to
0156c0b
Compare
0156c0b
to
88631cd
Compare
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
* add simplified export pipeline setup for Jaeger * add With* options to configure SDK options. * add test for WithRegistration and WithSDK * rename Registeration with RegisterGlobal * rename WithRegistration to RegisterAsGlobal Co-authored-by: rahulpa <rahulpa@google.com> Co-authored-by: Joshua MacDonald <jmacd@users.noreply.github.com>
This PR adds an ID Generator for sending traces to AWS X-Ray as well as unit tests for testing the ID Generator.
The core functionalities include:
NewTraceID()
which generates a new Trace ID based on AWS X-Ray TraceID FormatNewSpanID()
which generates a new Span ID from a randomly-chosen sequencecc @alolita