New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@opentelemetry/instrumentation-socket.io

Package Overview
Dependencies
Maintainers
6
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opentelemetry/instrumentation-socket.io

OpenTelemetry instrumentation for `socket.io` messaging server implementation for Socket.IO communication

latest
Source
npmnpm
Version
0.69.0
Version published
Weekly downloads
6.4M
-19.6%
Maintainers
6
Weekly downloads
 
Created
Source

OpenTelemetry socket.io Instrumentation for Node.js

NPM Published Version Apache License

This module provides automatic instrumentation for the socket.io module.

If total installation size is not constrained, it is recommended to use the @opentelemetry/auto-instrumentations-node bundle with @opentelemetry/sdk-node for the most seamless instrumentation experience.

Compatible with OpenTelemetry JS API and SDK 1.0+.

Installation

npm install --save @opentelemetry/instrumentation-socket.io

Supported Versions

  • socket.io versions >=2.0.0 <5

Usage

To enable a specific instrumentation, pass it to registerInstrumentations(). This is commonly done via NodeSDK for fully setting up all OpenTelemetry SDK components:

const { NodeSDK } = require('@opentelemetry/sdk-node');
const { SocketIoInstrumentation } = require("@opentelemetry/instrumentation-socket.io");

const sdk = new NodeSDK({
  instrumentations: [
    new SocketIoInstrumentation(),
  ],
});
sdk.start();
process.once('beforeExit', async () => { await sdk.shutdown(); });

Optional Parameters

OptionTypeDefaultDescription
emitHookSocketIoHookFunctionundefinedhook for adding custom attributes before socket.io emits the event
emitIgnoreEventListstring[][]names of emitted events to ignore tracing for
onHookSocketIoHookFunctionundefinedhook for adding custom attributes before the event listener (callback) is invoked
onIgnoreEventListstring[][]names of listened events to ignore tracing for
traceReservedbooleanfalseset to true if you want to trace socket.io reserved events (see docs)

Filter Http Transport

If you do not want to trace the socket.io HTTP polling requests, use the ignoreIncomingRequestHook option from @opentelemetry/instrumentation-http to filter out requests on the default socket.io route:

const { HttpInstrumentation } = require("@opentelemetry/instrumentation-http");
const {
  SocketIoInstrumentation,
} = require("@opentelemetry/instrumentation-socket.io");
const { registerInstrumentations } = require("@opentelemetry/instrumentation");

registerInstrumentations({
  instrumentations: [
    new HttpInstrumentation({
      ignoreIncomingRequestHook(req) {
        // Ignore socket.io HTTP polling transport requests
        return !!req.url?.startsWith("/socket.io/");
      },
    }),
    new SocketIoInstrumentation(),
  ],
});

Semantic Conventions

This package uses @opentelemetry/semantic-conventions version 1.22+, which implements Semantic Convention Version 1.7.0

Attributes collected:

AttributeShort Description
messaging.destinationThe message destination name. This might be equal to the span name but is required nevertheless.
messaging.destination_kindThe kind of message destination.
messaging.operationA string identifying the kind of message consumption.
messaging.systemA string identifying the messaging system.

License

Apache 2.0 - See LICENSE for more information.

Keywords

socket.io

FAQs

Package last updated on 31 Aug 2026

Related posts