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 a92f781 commit b599f6dCopy full SHA for b599f6d
packages/tracing/src/integrations/node/prisma.ts
@@ -79,8 +79,8 @@ export class Prisma implements Integration {
79
const model = params.model;
80
81
const span = parentSpan?.startChild({
82
- description: `Action: ${action}, ${model ? `Model: ${model}` : ''}`,
83
- op: 'prisma',
+ description: model ? `${model} ${action}` : action,
+ op: 'db.prisma',
84
});
85
86
const rv = next(params);
0 commit comments