@solarwinds-apm/nuxt-otel
v0.1.0
Published
OpenTelemetry instrumentation support for Nuxt
Readme
OpenTelemetry plugin for Nuxt
Installation
Start by adding the module to your dependencies:
npm install @solarwinds-apm/nuxt-otelThen update your Nuxt configuration to use the module:
export default defineNuxtConfig({
modules: [
/* ... */
"@solarwinds-apm/nuxt-otel",
],
// Optionally customize the module configuration
otel: {
// This will import solarwinds-apm before
// the Nuxt server starts
imports: ["solarwinds-apm"]
},
})