We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9467c5 commit d2a0a55Copy full SHA for d2a0a55
packages/nextjs/src/config/wrappers/wrapperUtils.ts
@@ -72,8 +72,11 @@ export function callTracedServerSideDataFetcher<F extends (...args: any[]) => Pr
72
req: IncomingMessage,
73
res: ServerResponse,
74
options: {
75
+ /** Parameterized route of the request - will be used for naming the transaction. */
76
requestedRouteName: string;
77
+ /** Name of the route the data fetcher was defined in - will be used for describing the data fetcher's span. */
78
dataFetcherRouteName: string;
79
+ /** Name of the data fetching method - will be used for describing the data fetcher's span. */
80
dataFetchingMethodName: string;
81
},
82
): Promise<ReturnType<F>> {
0 commit comments