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 adf2525 commit 3ac945dCopy full SHA for 3ac945d
plugins/node/opentelemetry-instrumentation-hapi/src/instrumentation.ts
@@ -395,7 +395,11 @@ export class HapiInstrumentation extends InstrumentationBase {
395
if (rpcMetadata?.type === RPCType.HTTP) {
396
rpcMetadata.route = route.path;
397
}
398
- const metadata = getRouteMetadata(route, instrumentation._semconvStability, pluginName);
+ const metadata = getRouteMetadata(
399
+ route,
400
+ instrumentation._semconvStability,
401
+ pluginName
402
+ );
403
const span = instrumentation.tracer.startSpan(metadata.name, {
404
attributes: metadata.attributes,
405
});
0 commit comments