We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ed57f6 commit 0a4271bCopy full SHA for 0a4271b
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