Socket
Book a DemoInstallSign in
Socket

@voodoo.io/tracing-middleware

Package Overview
Dependencies
Maintainers
3
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@voodoo.io/tracing-middleware

Add a middleware to handle tracing with open tracing libs

2.1.0
latest
Source
npmnpm
Version published
Weekly downloads
28
-78.63%
Maintainers
3
Weekly downloads
 
Created
Source

npm version GitHub license Opened PR Opened issues CI pipeline Node version Code coverage

Tracing middleware with open tracing libs

Purpose

A simple middleware to enable tracing with opentelemetry lib. It will instantiate some instrumentation libs in order to catch span for:

  • HTTP calls
  • AWS SDK
  • Mysql
  • MongoDB
  • Postgres
  • Web frameworks: Fastify, Express, Koa
  • AWS Lambda
  • Redis
  • GraphQL
  • GRPC
  • Prisma

Installation

npm install @voodoo.io/tracing-middleware --save

Usage

Basic usage

const tracer = require('@voodoo.io/tracing-middleware')()

Use addTraceId method

This method will add the traceID in the req object.

const tracingModule = require('@voodoo.io/tracing-middleware')()

fastify.addHook('onRequest', tracingModule.addTraceId)

Configuration

Example of configuration, using tempo as endpoint.

const tracer = require('@voodoo.io/tracing-middleware')({
    serviceName: 'myService',
    exporterEndpoint: 'http://tempo.monitoring.svc.cluster.local:14268/api/traces',
    instrumentations: {
        mysql: true,
        lambda: true
    }
})
NameDefaultDescription
serviceNameprocess.env.OTEL_SERVICE_NAMEYour service's name
exporterEndpointprocess.env.OTEL_EXPORTER_ENDPOINTThe opentelemetry endpoint
instrumentationsList of instrumentations
instrumentations.httptrue
instrumentations.awstrue
instrumentations.mysqlfalse
instrumentations.mongodbfalse
instrumentations.pgfalse
instrumentations.redisfalse
instrumentations.ioredisfalse
instrumentations.graphqlfalse
instrumentations.koafalse
instrumentations.expressfalse
instrumentations.fastifyfalse
instrumentations.lambdafalse
instrumentations.grpcfalse
instrumentations.winstonfalse
instrumentations.prismafalse

Compatibility

VersionSupportedTested
20.xyesyes
18.xyesyes

Debug

DEBUG=tracing-middleware* node myApp.js

Test

$ npm test

Run with coverage

$ npm run coverage

Coverage report can be found in coverage/.

License

MIT

Release

npm publish

Keywords

tracing

FAQs

Package last updated on 02 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.