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 4a8a477 commit ce9b9a5Copy full SHA for ce9b9a5
packages/nextjs/src/config/wrappers/wrapperUtils.ts
@@ -73,8 +73,11 @@ export function callTracedServerSideDataFetcher<F extends (...args: any[]) => Pr
73
req: IncomingMessage,
74
res: ServerResponse,
75
options: {
76
+ /** Parameterized route of the request - will be used for naming the transaction. */
77
requestedRouteName: string;
78
+ /** Name of the route the data fetcher was defined in - will be used for describing the data fetcher's span. */
79
dataFetcherRouteName: string;
80
+ /** Name of the data fetching method - will be used for describing the data fetcher's span. */
81
dataFetchingMethodName: string;
82
},
83
): Promise<ReturnType<F>> {
0 commit comments