@uptrace/vue
Advanced tools
Changelog
v1.10.0
OpenTelemetry JS v1.10 contains a
breaking change in NodeSDK
which
requires replacing the following code:
const uptrace = require('@uptrace/node')
uptrace.configureOpentelemetry({...}).start().then(main)
With just:
const uptrace = require('@uptrace/node')
uptrace.configureOpentelemetry({...})
See documentation for more details.