Feature/opentelemetry - #537
Open
Opulencechuks wants to merge 3 commits into
Open
Conversation
|
@Opulencechuks is attempting to deploy a commit to the Abdulazeem's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
@Opulencechuks Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Owner
|
FIX BACKEND BUILD TEST ERROR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #508
Description:
This PR introduces distributed tracing to the application to provide pinpoint visibility into latency bottlenecks across the API, database queries, and external HTTP calls, resolving the difficulty in debugging performance issues.
Changes Included:
src/utils/tracing.jswhich sets up the@opentelemetry/sdk-nodealong with auto-instrumentations for Express and HTTP out-of-the-box.@opentelemetry/exporter-zipkinto export traces to the Jaeger/Zipkin format natively via the standard Zipkin endpoint (http://localhost:9411/api/v2/spans)."tracing"preview feature inschema.prismaand instantiatedPrismaInstrumentationto seamlessly trace database queries in tandem with Express incoming requests.server.jsto ensure the environment is instrumented before requiringexpress,prisma, or any other packages.Impact:
Reviewer Notes:
Please ensure you have a local Zipkin/Jaeger instance configured to receive trace data at the specified
ZIPKIN_ENDPOINTenvironment variable in order to view the exported traces locally.