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 @@ -675,12 +675,11 @@ import { NodeSDK, tracing } from '@opentelemetry/sdk-node'
675
675
new NodeSDK ({
676
676
traceExporter: new OTLPTraceExporter ({ url: ' http://<otlp-endpoint>:4318' }),
677
677
// or with batching options
678
- spanProcessors: [new tracing .BatchSpanProcessor (
679
- new OTLPTraceExporter ({ url: ' http://<otlp-endpoint>:4318' }),
680
- {
678
+ spanProcessors: [
679
+ new tracing .BatchSpanProcessor (new OTLPTraceExporter ({ url: ' http://<otlp-endpoint>:4318' }), {
681
680
// ... batching options
682
- }
683
- ) ]
681
+ })
682
+ ]
684
683
}).start ()
685
684
```
686
685
@@ -787,8 +786,9 @@ Please review your queries to not filter against `null` parent span id.
787
786
788
787
A new span encapsulating each GraphQL operation have been added.
789
788
790
- It is a subspan of the HTTP request span, and encapsulate all the actual GraphQL processing.
791
- There can be multiple GraphQL operation spans for one HTTP request span if you have enabled graphql operation batching over http.
789
+ It is a subspan of the HTTP request span, and encapsulate all the actual GraphQL processing. There
790
+ can be multiple GraphQL operation spans for one HTTP request span if you have enabled graphql
791
+ operation batching over http.
792
792
793
793
### OpenTelemetry Context
794
794
You can’t perform that action at this time.
0 commit comments