File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
packages/web/docs/src/content/migration-guides Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -565,12 +565,11 @@ import { NodeSDK, tracing } from '@opentelemetry/sdk-node'
565
565
new NodeSDK ({
566
566
traceExporter: new OTLPTraceExporter ({ url: ' http://<otlp-endpoint>:4318' }),
567
567
// or with batching options
568
- spanProcessors: [new tracing .BatchSpanProcessor (
569
- new OTLPTraceExporter ({ url: ' http://<otlp-endpoint>:4318' }),
570
- {
568
+ spanProcessors: [
569
+ new tracing .BatchSpanProcessor (new OTLPTraceExporter ({ url: ' http://<otlp-endpoint>:4318' }), {
571
570
// ... batching options
572
- }
573
- ) ]
571
+ })
572
+ ]
574
573
}).start ()
575
574
```
576
575
@@ -677,8 +676,9 @@ Please review your queries to not filter against `null` parent span id.
677
676
678
677
A new span encapsulating each GraphQL operation have been added.
679
678
680
- It is a subspan of the HTTP request span, and encapsulate all the actual GraphQL processing.
681
- There can be multiple GraphQL operation spans for one HTTP request span if you have enabled graphql operation batching over http.
679
+ It is a subspan of the HTTP request span, and encapsulate all the actual GraphQL processing. There
680
+ can be multiple GraphQL operation spans for one HTTP request span if you have enabled graphql
681
+ operation batching over http.
682
682
683
683
### OpenTelemetry Context
684
684
You can’t perform that action at this time.
0 commit comments