-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(solidstart): Add server action instrumentation helper
- Loading branch information
1 parent
eb23dc4
commit 281463d
Showing
14 changed files
with
430 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
17 changes: 17 additions & 0 deletions
17
dev-packages/e2e-tests/test-applications/solidstart/src/routes/server-error.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { withServerActionInstrumentation } from '@sentry/solidstart'; | ||
import { createAsync } from '@solidjs/router'; | ||
|
||
const getPrefecture = async () => { | ||
'use server'; | ||
return await withServerActionInstrumentation('getPrefecture', () => { | ||
throw new Error('Error thrown from Solid Start E2E test app server route'); | ||
|
||
return { prefecture: 'Kanagawa' }; | ||
}); | ||
}; | ||
|
||
export default function ServerErrorPage() { | ||
const data = createAsync(() => getPrefecture()); | ||
|
||
return <div>Prefecture: {data()?.prefecture}</div>; | ||
} |
18 changes: 16 additions & 2 deletions
18
dev-packages/e2e-tests/test-applications/solidstart/src/routes/users/[id].tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,20 @@ | ||
import { useParams } from '@solidjs/router'; | ||
import { withServerActionInstrumentation } from '@sentry/solidstart'; | ||
import { createAsync, useParams } from '@solidjs/router'; | ||
|
||
const getPrefecture = async () => { | ||
'use server'; | ||
return await withServerActionInstrumentation('getPrefecture', () => { | ||
return { prefecture: 'Ehime' }; | ||
}); | ||
}; | ||
export default function User() { | ||
const params = useParams(); | ||
return <div>User ID: {params.id}</div>; | ||
const userData = createAsync(() => getPrefecture()); | ||
|
||
return ( | ||
<div> | ||
User ID: {params.id} | ||
Prefecture: {userData()?.prefecture} | ||
</div> | ||
); | ||
} |
31 changes: 31 additions & 0 deletions
31
dev-packages/e2e-tests/test-applications/solidstart/tests/errors.server.test.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { expect, test } from '@playwright/test'; | ||
import { waitForError } from '@sentry-internal/test-utils'; | ||
|
||
test.describe('server-side errors', () => { | ||
test('captures server action error', async ({ page }) => { | ||
const errorEventPromise = waitForError('solidstart', errorEvent => { | ||
return errorEvent?.exception?.values?.[0]?.value === 'Error thrown from Solid Start E2E test app server route'; | ||
}); | ||
|
||
await page.goto(`/server-error`); | ||
|
||
const error = await errorEventPromise; | ||
|
||
expect(error.tags).toMatchObject({ runtime: 'node' }); | ||
expect(error).toMatchObject({ | ||
exception: { | ||
values: [ | ||
{ | ||
type: 'Error', | ||
value: 'Error thrown from Solid Start E2E test app server route', | ||
mechanism: { | ||
type: 'solidstart', | ||
handled: false, | ||
}, | ||
}, | ||
], | ||
}, | ||
transaction: 'getPrefecture', | ||
}); | ||
}); | ||
}); |
25 changes: 25 additions & 0 deletions
25
dev-packages/e2e-tests/test-applications/solidstart/tests/performance.server.test.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { expect, test } from '@playwright/test'; | ||
import { waitForTransaction } from '@sentry-internal/test-utils'; | ||
|
||
test('sends a server action transaction', async ({ page }) => { | ||
const transactionPromise = waitForTransaction('solidstart', transactionEvent => { | ||
return transactionEvent?.transaction === 'getPrefecture'; | ||
}); | ||
|
||
await page.goto('/users/6'); | ||
|
||
const transaction = await transactionPromise; | ||
|
||
expect(transaction).toMatchObject({ | ||
transaction: 'getPrefecture', | ||
tags: { runtime: 'node' }, | ||
transaction_info: { source: 'url' }, | ||
type: 'transaction', | ||
contexts: { | ||
trace: { | ||
op: 'function.server_action', | ||
origin: 'manual', | ||
}, | ||
}, | ||
}); | ||
}); |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { flush } from '@sentry/node'; | ||
import { logger } from '@sentry/utils'; | ||
import type { RequestEvent } from 'solid-js/web'; | ||
import { DEBUG_BUILD } from '../common/debug-build'; | ||
|
||
/** | ||
* Takes a request event and extracts traceparent and DSC data | ||
* from the `sentry-trace` and `baggage` DSC headers. | ||
*/ | ||
export function getTracePropagationData(event: RequestEvent | undefined): { | ||
sentryTrace: string | undefined; | ||
baggage: string | null; | ||
} { | ||
const request = event && event.request; | ||
const headers = request && request.headers; | ||
const sentryTrace = (headers && headers.get('sentry-trace')) || undefined; | ||
const baggage = (headers && headers.get('baggage')) || null; | ||
|
||
return { sentryTrace, baggage }; | ||
} | ||
|
||
/** Flush the event queue to ensure that events get sent to Sentry before the response is finished and the lambda ends */ | ||
export async function flushIfServerless(): Promise<void> { | ||
const isServerless = !!process.env.LAMBDA_TASK_ROOT || !!process.env.VERCEL; | ||
|
||
if (isServerless) { | ||
try { | ||
DEBUG_BUILD && logger.log('Flushing events...'); | ||
await flush(2000); | ||
DEBUG_BUILD && logger.log('Done flushing events'); | ||
} catch (e) { | ||
DEBUG_BUILD && logger.log('Error while flushing events:\n', e); | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* Determines if a thrown "error" is a redirect Response which Solid Start users can throw to redirect to another route. | ||
* see: https://docs.solidjs.com/solid-router/reference/data-apis/response-helpers#redirect | ||
* @param error the potential redirect error | ||
*/ | ||
export function isRedirect(error: unknown): boolean { | ||
if (error == null || !(error instanceof Response)) { | ||
return false; | ||
} | ||
|
||
const hasValidLocation = typeof error.headers.get('location') === 'string'; | ||
const hasValidStatus = error.status >= 300 && error.status <= 308; | ||
return hasValidLocation && hasValidStatus; | ||
} |
65 changes: 65 additions & 0 deletions
65
packages/solidstart/src/server/withServerActionInstrumentation.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import { SPAN_STATUS_ERROR, handleCallbackErrors } from '@sentry/core'; | ||
import { | ||
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, | ||
captureException, | ||
continueTrace, | ||
startSpan, | ||
withIsolationScope, | ||
} from '@sentry/node'; | ||
import { winterCGRequestToRequestData } from '@sentry/utils'; | ||
import { getRequestEvent } from 'solid-js/web'; | ||
import { flushIfServerless, getTracePropagationData, isRedirect } from './utils'; | ||
|
||
/** | ||
* Wraps a server action (functions that use the 'use server' directive) function body with Sentry Error and Performance instrumentation. | ||
*/ | ||
export async function withServerActionInstrumentation<A extends (...args: unknown[]) => unknown>( | ||
serverActionName: string, | ||
callback: A, | ||
): Promise<ReturnType<A>> { | ||
return withIsolationScope(isolationScope => { | ||
const event = getRequestEvent(); | ||
|
||
if (event && event.request) { | ||
isolationScope.setSDKProcessingMetadata({ request: winterCGRequestToRequestData(event.request) }); | ||
} | ||
isolationScope.setTransactionName(serverActionName); | ||
|
||
return continueTrace(getTracePropagationData(event), () => instrumentServerAction(serverActionName, callback)); | ||
}); | ||
} | ||
|
||
async function instrumentServerAction<A extends (...args: unknown[]) => unknown>( | ||
name: string, | ||
callback: A, | ||
): Promise<ReturnType<A>> { | ||
try { | ||
return await startSpan( | ||
{ | ||
op: 'function.server_action', | ||
name, | ||
forceTransaction: true, | ||
attributes: { | ||
[SEMANTIC_ATTRIBUTE_SENTRY_SOURCE]: 'url', | ||
}, | ||
}, | ||
async span => { | ||
const result = await handleCallbackErrors(callback, error => { | ||
if (!isRedirect(error)) { | ||
span.setStatus({ code: SPAN_STATUS_ERROR, message: 'internal_error' }); | ||
captureException(error, { | ||
mechanism: { | ||
handled: false, | ||
type: 'solidstart', | ||
}, | ||
}); | ||
} | ||
}); | ||
|
||
return result; | ||
}, | ||
); | ||
} finally { | ||
await flushIfServerless(); | ||
} | ||
} |
Oops, something went wrong.