Skip to content

Commit d7aa19a

Browse files
committed
Drop @experimental tag and redundant runtime-hook comments from channel integrations
1 parent 4dab6a2 commit d7aa19a

5 files changed

Lines changed: 5 additions & 16 deletions

File tree

packages/server-utils/src/integrations/tracing-channel/aws-sdk/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,6 @@ const _awsChannelIntegration = (() => {
254254
* Subscribes to the `orchestrion:@smithy/smithy-client:send` (and equivalent) diagnostics_channel
255255
* the orchestrion code transform injects into the AWS SDK's smithy `Client.prototype.send`, emitting
256256
* spans identical to the OTel `@opentelemetry/instrumentation-aws-sdk` integration (with a distinct
257-
* `auto.aws.orchestrion.aws_sdk` origin). Requires the orchestrion runtime hook or bundler plugin;
258-
* `@sentry/node`'s `Sentry.init()` installs the runtime hook by default.
259-
*
260-
* @experimental
257+
* `auto.aws.orchestrion.aws_sdk` origin). Requires the orchestrion runtime hook or bundler plugin.
261258
*/
262259
export const awsChannelIntegration = defineIntegration(_awsChannelIntegration);

packages/server-utils/src/integrations/tracing-channel/firebase/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ const _firebaseChannelIntegration = (() => {
2828
* diagnostics_channels the orchestrion code transform injects into firestore's `addDoc`/`getDocs`/
2929
* `setDoc`/`deleteDoc` and firebase-functions' `onX` registration functions, emitting spans identical
3030
* to the OTel integration — with a distinct `auto.firebase.orchestrion.*` origin. Requires the
31-
* orchestrion runtime hook or bundler plugin; `@sentry/node`'s `Sentry.init()` installs the runtime
32-
* hook by default.
33-
*
34-
* @experimental
31+
* orchestrion runtime hook or bundler plugin.
3532
*/
3633
export const firebaseChannelIntegration = defineIntegration(_firebaseChannelIntegration);

packages/server-utils/src/integrations/tracing-channel/graphql/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,7 @@ const _graphqlChannelIntegration = ((options: GraphqlDiagnosticChannelsOptions =
7373
* Subscribes to the `orchestrion:graphql:{parse,validate,execute}` channels the orchestrion code
7474
* transform injects into `graphql`'s `language/parser.js`, `validation/validate.js` and
7575
* `execution/execute.js`, emitting spans identical to the native path. Requires the orchestrion
76-
* runtime hook or bundler plugin; `@sentry/node`'s `Sentry.init()` installs the runtime hook by
77-
* default.
78-
*
79-
* @experimental
76+
* runtime hook or bundler plugin.
8077
*/
8178
export const graphqlChannelIntegration = defineIntegration(_graphqlChannelIntegration);
8279

packages/server-utils/src/integrations/tracing-channel/kafkajs/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,7 @@ const _kafkajsChannelIntegration = (() => {
102102
*
103103
* Subscribes to the `orchestrion:kafkajs:*` diagnostics_channels that the orchestrion code transform
104104
* injects into `kafkajs`'s `producer/messageProducer.js` (`sendBatch`) and `consumer/index.js` (`run`).
105-
* Requires the orchestrion runtime hook or bundler plugin to be active; `@sentry/node`'s
106-
* `Sentry.init()` installs the runtime hook by default.
105+
* Requires the orchestrion runtime hook or bundler plugin to be active.
107106
*
108107
* Known limitation vs. the OTel integration it replaces: the wrapping producer-`transaction` span is
109108
* not emitted (the transformer can't replace `transaction()`'s return value to patch commit/abort).

packages/server-utils/src/integrations/tracing-channel/mysql2.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ interface Mysql2Connection {
6262
* transform intentionally leaves alone.
6363
*
6464
* The two version ranges never overlap, so no query is double-counted. Requires the orchestrion
65-
* runtime hook or bundler plugin to be active; `@sentry/node`'s `Sentry.init()` installs the runtime
66-
* hook by default.
65+
* runtime hook or bundler plugin to be active.
6766
*/
6867
function instrumentMysql2(): void {
6968
// mysql2 >= 3.20.0: native diagnostics_channel path (inert on older versions, which never publish).

0 commit comments

Comments
 (0)