File tree 2 files changed +6
-2
lines changed
node-experimental/src/integrations 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,10 @@ const _httpIntegration = ((options: HttpOptions = {}) => {
117
117
} ;
118
118
} ) satisfies IntegrationFn ;
119
119
120
+ /**
121
+ * The http integration instruments Node's internal http and https modules.
122
+ * It creates breadcrumbs and spans for outgoing HTTP requests which will be attached to the currently active span.
123
+ */
120
124
export const httpIntegration = defineIntegration ( _httpIntegration ) ;
121
125
122
126
/** Update the span with data we need. */
Original file line number Diff line number Diff line change @@ -138,8 +138,8 @@ const _httpIntegration = ((options: HttpIntegrationOptions = {}) => {
138
138
export const httpIntegration = defineIntegration ( _httpIntegration ) ;
139
139
140
140
/**
141
- * The http module integration instruments Node's internal http module. It creates breadcrumbs, transactions for outgoing
142
- * http requests and attaches trace data when tracing is enabled via its `tracing` option .
141
+ * The http integration instruments Node's internal http and https modules.
142
+ * It creates breadcrumbs and spans for outgoing HTTP requests which will be attached to the currently active span .
143
143
*
144
144
* @deprecated Use `httpIntegration()` instead.
145
145
*/
You can’t perform that action at this time.
0 commit comments