Skip to content

Commit ed148d1

Browse files
committed
updates
1 parent b46b726 commit ed148d1

File tree

8 files changed

+38
-18
lines changed

8 files changed

+38
-18
lines changed

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@unwebio:registry=https://npm.pkg.github.com

packages/hub/.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@unwebio:registry=https://npm.pkg.github.com

packages/hub/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "@sentry/hub",
2+
"name": "@unwebio/sentry-hub",
33
"version": "6.16.1",
44
"description": "Sentry hub which handles global state managment.",
5-
"repository": "git://github.com/getsentry/sentry-javascript.git",
6-
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/hub",
5+
"repository": "git://github.com/unwebio/sentry-javascript.git",
6+
"homepage": "https://github.com/unwebio/sentry-javascript/tree/master/packages/hub",
77
"author": "Sentry",
88
"license": "BSD-3-Clause",
99
"engines": {
@@ -13,7 +13,7 @@
1313
"module": "esm/index.js",
1414
"types": "dist/index.d.ts",
1515
"publishConfig": {
16-
"access": "public"
16+
"access": "restricted"
1717
},
1818
"dependencies": {
1919
"@sentry/types": "6.16.1",

packages/hub/src/hub.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,8 @@ export function getActiveDomain(): DomainAsCarrier | undefined {
580580
function getHubFromActiveDomain(registry: Carrier): Hub {
581581
try {
582582
const sentry = getMainCarrier().__SENTRY__;
583-
const activeDomain = sentry && sentry.extensions && sentry.extensions.domain && sentry.extensions.domain.active;
583+
const domainModule = sentry && sentry.extensions && sentry.extensions.domain
584+
const activeDomain = domainModule && domainModule.active;
584585

585586
// If there's no active domain, just return global hub
586587
if (!activeDomain) {
@@ -589,7 +590,9 @@ function getHubFromActiveDomain(registry: Carrier): Hub {
589590

590591
// If there's no hub on current domain, or it's an old API, assign a new one
591592
if (!hasHubOnCarrier(activeDomain) || getHubFromCarrier(activeDomain).isOlderThan(API_VERSION)) {
592-
const registryHubTopStack = getHubFromCarrier(registry).getStackTop();
593+
const stack: any[] = domainModule?._stack
594+
const parentCarrier = stack[stack.length - 2] || registry
595+
const registryHubTopStack = getHubFromCarrier(parentCarrier).getStackTop();
593596
setHubOnCarrier(activeDomain, new Hub(registryHubTopStack.client, Scope.clone(registryHubTopStack.scope)));
594597
}
595598

packages/node/.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@unwebio:registry=https://npm.pkg.github.com

packages/node/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "@sentry/node",
2+
"name": "@unwebio/sentry-node",
33
"version": "6.16.1",
44
"description": "Official Sentry SDK for Node.js",
5-
"repository": "git://github.com/getsentry/sentry-javascript.git",
6-
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/node",
5+
"repository": "git://github.com/unwebio/sentry-javascript.git",
6+
"homepage": "https://github.com/unwebio/sentry-javascript/tree/master/packages/node",
77
"author": "Sentry",
88
"license": "BSD-3-Clause",
99
"engines": {
@@ -13,11 +13,11 @@
1313
"module": "esm/index.js",
1414
"types": "dist/index.d.ts",
1515
"publishConfig": {
16-
"access": "public"
16+
"access": "restricted"
1717
},
1818
"dependencies": {
1919
"@sentry/core": "6.16.1",
20-
"@sentry/hub": "6.16.1",
20+
"@unwebio/sentry-hub": "6.16.1",
2121
"@sentry/tracing": "6.16.1",
2222
"@sentry/types": "6.16.1",
2323
"@sentry/utils": "6.16.1",

packages/node/src/integrations/http.ts

+18-6
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,13 @@ function _createWrappedRequestMethodFactory(
117117
op: 'http.client',
118118
});
119119

120-
const sentryTraceHeader = span.toTraceparent();
121-
logger.log(
122-
`[Tracing] Adding sentry-trace header ${sentryTraceHeader} to outgoing request to ${requestUrl}: `,
123-
);
124-
requestOptions.headers = { ...requestOptions.headers, 'sentry-trace': sentryTraceHeader };
120+
if (!requestOptions.stripTracingHeader) {
121+
const sentryTraceHeader = span.toTraceparent();
122+
logger.log(
123+
`[Tracing] Adding sentry-trace header ${sentryTraceHeader} to outgoing request to ${requestUrl}: `,
124+
);
125+
requestOptions.headers = { ...requestOptions.headers, 'sentry-trace': sentryTraceHeader };
126+
}
125127
}
126128
}
127129

@@ -139,7 +141,17 @@ function _createWrappedRequestMethodFactory(
139141
span.setHttpStatus(res.statusCode);
140142
}
141143
span.description = cleanSpanDescription(span.description, requestOptions, req);
142-
span.finish();
144+
145+
res.once('end', () => {
146+
span?.finish()
147+
})
148+
149+
res.once('error', () => {
150+
if (breadcrumbsEnabled) {
151+
addRequestBreadcrumb('response_error', requestUrl, req);
152+
}
153+
span?.finish()
154+
})
143155
}
144156
})
145157
.once('error', function(this: http.ClientRequest): void {

packages/node/src/integrations/utils/http.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ export function cleanSpanDescription(
7373
}
7474

7575
// the node types are missing a few properties which node's `urlToOptions` function spits out
76-
export type RequestOptions = http.RequestOptions & { hash?: string; search?: string; pathname?: string; href?: string };
76+
export type RequestOptions = http.RequestOptions
77+
& { hash?: string; search?: string; pathname?: string; href?: string }
78+
& { stripTracingHeader?: boolean };
7779
type RequestCallback = (response: http.IncomingMessage) => void;
7880
export type RequestMethodArgs =
7981
| [RequestOptions | string | URL, RequestCallback?]

0 commit comments

Comments
 (0)