Skip to content
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

feat(node): Migrate to @fastify/otel #15542

Open
wants to merge 17 commits into
base: develop
Choose a base branch
from

Conversation

onurtemizkan
Copy link
Collaborator

@onurtemizkan onurtemizkan commented Feb 28, 2025

Resolves: #15130
Depends on: fastify/otel#25 for proper NestJS support.

Opened an issue regarding the problem with fastify types: fastify/otel#32

The behaviour is not exactly the same as before, mainly because the new instrumentation doesn't have a requestHook.

@onurtemizkan onurtemizkan force-pushed the onur/fastify-otel-migration branch 2 times, most recently from 38047fd to 6c347ee Compare February 28, 2025 15:20
@@ -101,7 +101,8 @@
"import-in-the-middle": "^1.13.0"
},
"devDependencies": {
"@types/node": "^18.19.1"
"@types/node": "^18.19.1",
"fastify": "4.18.0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we avoid this and just vendor in the minimal interface we need to satisfy the types?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure 👍

Copy link
Contributor

github-actions bot commented Feb 28, 2025

size-limit report 📦

Path Size % Change Change
@sentry/browser 23.2 KB - -
@sentry/browser - with treeshaking flags 23.02 KB - -
@sentry/browser (incl. Tracing) 36.83 KB - -
@sentry/browser (incl. Tracing, Replay) 73.99 KB - -
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags 67.39 KB - -
@sentry/browser (incl. Tracing, Replay with Canvas) 78.66 KB - -
@sentry/browser (incl. Tracing, Replay, Feedback) 91.22 KB - -
@sentry/browser (incl. Feedback) 40.33 KB - -
@sentry/browser (incl. sendFeedback) 27.83 KB - -
@sentry/browser (incl. FeedbackAsync) 32.63 KB - -
@sentry/react 25 KB - -
@sentry/react (incl. Tracing) 38.75 KB - -
@sentry/vue 27.41 KB - -
@sentry/vue (incl. Tracing) 38.55 KB - -
@sentry/svelte 23.23 KB - -
CDN Bundle 24.44 KB - -
CDN Bundle (incl. Tracing) 36.85 KB - -
CDN Bundle (incl. Tracing, Replay) 71.87 KB - -
CDN Bundle (incl. Tracing, Replay, Feedback) 77.07 KB - -
CDN Bundle - uncompressed 71.24 KB - -
CDN Bundle (incl. Tracing) - uncompressed 108.94 KB - -
CDN Bundle (incl. Tracing, Replay) - uncompressed 220.23 KB - -
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 232.8 KB - -
@sentry/nextjs (client) 40.06 KB - -
@sentry/sveltekit (client) 37.26 KB - -
@sentry/node 145.01 KB +1.49% +2.12 KB 🔺
@sentry/node - without tracing 96.1 KB - -
@sentry/aws-serverless 120.45 KB - -

View base workflow run

@onurtemizkan onurtemizkan force-pushed the onur/fastify-otel-migration branch 2 times, most recently from 88d946e to 112c80a Compare March 5, 2025 18:27
@onurtemizkan onurtemizkan marked this pull request as ready for review March 5, 2025 18:33
@andreiborza andreiborza self-assigned this Mar 10, 2025
@@ -0,0 +1,32 @@
/*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the files we vendored in from OTEL, we should also link to the git sha we used of the versioned files.

Copy link
Member

@andreiborza andreiborza left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job! This is looking nice.

@@ -65,6 +65,7 @@
"access": "public"
},
"dependencies": {
"@fastify/otel": "0.5.0",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

l: We can bump to 0.5.1

Comment on lines 19 to 52
// /**
// * Minimal request type containing properties around route information.
// * Works for Fastify 3, 4 and presumably 5.
// *
// * Based on https://github.com/fastify/fastify/blob/ce3811f5f718be278bbcd4392c615d64230065a6/types/request.d.ts
// */
// // eslint-disable-next-line @typescript-eslint/no-explicit-any
// interface MinimalFastifyRequest extends Record<string, any> {
// method?: string;
// // since [email protected]
// routeOptions?: {
// url?: string;
// };
// routerPath?: string;
// }

// /**
// * Minimal reply type containing properties needed for error handling.
// *
// * Based on https://github.com/fastify/fastify/blob/ce3811f5f718be278bbcd4392c615d64230065a6/types/reply.d.ts
// */
// // eslint-disable-next-line @typescript-eslint/no-explicit-any
// interface MinimalFastifyReply extends Record<string, any> {
// statusCode: number;
// }

// // We inline the types we care about here
// interface Fastify {
// // eslint-disable-next-line @typescript-eslint/no-explicit-any
// version: string;
// register: (plugin: any) => Fastify;
// after: (listener?: (err: Error) => void) => Fastify;
// addHook: (name: string, handler: (...params: unknown[]) => void) => Fastify;
// }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

l: Do we want to keep this around?

@@ -159,11 +177,11 @@ function defaultShouldHandleError(_error: Error, _request: MinimalFastifyRequest
* app.listen({ port: 3000 });
* ```
*/
export function setupFastifyErrorHandler(fastify: Fastify, options?: Partial<FastifyHandlerOptions>): void {
export function setupFastifyErrorHandler(fastify: FastifyInstance, options?: Partial<FastifyHandlerOptions>): void {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should start thinking about making use of the diagnostics channel to automatically set this up for users on v5. I filed an issue here: #15936

@onurtemizkan onurtemizkan requested review from a team as code owners April 3, 2025 14:40
@onurtemizkan onurtemizkan force-pushed the onur/fastify-otel-migration branch from dcd6345 to 2bd1c74 Compare April 3, 2025 14:46
@onurtemizkan onurtemizkan force-pushed the onur/fastify-otel-migration branch from 2bd1c74 to 0308803 Compare April 3, 2025 14:54
@onurtemizkan
Copy link
Collaborator Author

@andreiborza - I updated the PR. Waiting for fastify/otel#35 to be released.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Migrate to @fastify/otel instrumentation
3 participants