Skip to content

Commit f0c1f5f

Browse files
committed
fix: add missing slash to http instrumentation healthcheck ignore paths
1 parent 5ba522e commit f0c1f5f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/TracingConfigDefault.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const NodeAutoInstrumentationsDefaultConfig = <InstrumentationConfigMap>{
3535
enabled: true,
3636
ignoreIncomingRequestHook: (request: IncomingMessage) => {
3737
return (
38-
['/health', '/_health', '/healthz', 'healthcheck'].includes(
38+
['/health', '/_health', '/healthz', '/healthcheck'].includes(
3939
request.url,
4040
) || request.method === 'OPTIONS'
4141
);

0 commit comments

Comments
 (0)