File tree Expand file tree Collapse file tree
packages/server-utils/src/integrations/tracing-channel Expand file tree Collapse file tree Original file line number Diff line number Diff 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 */
262259export const awsChannelIntegration = defineIntegration ( _awsChannelIntegration ) ;
Original file line number Diff line number Diff 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 */
3633export const firebaseChannelIntegration = defineIntegration ( _firebaseChannelIntegration ) ;
Original file line number Diff line number Diff 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 */
8178export const graphqlChannelIntegration = defineIntegration ( _graphqlChannelIntegration ) ;
8279
Original file line number Diff line number Diff 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).
Original file line number Diff line number Diff 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 */
6867function instrumentMysql2 ( ) : void {
6968 // mysql2 >= 3.20.0: native diagnostics_channel path (inert on older versions, which never publish).
You can’t perform that action at this time.
0 commit comments