npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@marz32one/otel-ws

v0.2.4

Published

Native ws OpenTelemetry trace propagation (embedded + header envelope; compatible with instrumentation-go/otel-gorilla-ws)

Readme

@marz32one/otel-ws

Native ws OpenTelemetry instrumentation for Node.js.

Propagates W3C Trace Context (traceparent / tracestate) in the JSON message body when the otel-ws subprotocol is negotiated.

Subprotocol negotiation and wire format

Client side automatically prepends otel-ws and json to the subprotocol list. Envelope instrumentation is enabled only when the server confirms otel-ws in the handshake (ws.protocol === 'otel-ws').

When negotiated, outgoing messages use an envelope:

{ "header": { "traceparent": "00-…", "tracestate": "…" }, "data": { "your": "payload" } }

When not negotiated, payloads are fully passthrough (native ws behavior): no envelope injection/extraction and no payload shape changes. websocket.send / websocket.receive spans are still created.

Install

npm install @marz32one/otel-ws @opentelemetry/api ws

Usage

Drop-in usage

import WebSocket from '@marz32one/otel-ws';

const ws = new WebSocket('ws://localhost:8085/otel-ws');
ws.on('open', () => {
  ws.send({ text: 'hello' });
});
ws.on('message', (msg) => {
  // trace context extracted before handler runs
  console.log(msg);
});

Server-side (ws-compatible API)

Use OtelWebSocket.Server (same shape as ws):

import OtelWebSocket from '@marz32one/otel-ws';

const wss = new OtelWebSocket.Server({ port: 8085 });
wss.on('connection', (ws) => {
  // auto-instrumented on connection
  ws.on('message', (msg) => {
    ws.send({ ack: true });
  });
});

You can still instrument an existing ws.Server socket manually:

import WsPkg from 'ws';
import { instrumentSocket } from '@marz32one/otel-ws';

const wss = new WsPkg.Server({ port: 8085 });
wss.on('connection', (rawWs) => {
  const ws = instrumentSocket(rawWs);
  ws.on('message', (msg) => {
    // already under extracted context
    ws.send({ ack: true });
  });
});

Native API coverage

@marz32one/otel-ws instruments these native paths automatically:

  • ws.on('message', handler):
    • automatically extracts traceparent / tracestate
    • creates websocket.receive span
    • executes your native handler under extracted OTel context
  • WebSocket.Sender.frame(...) + ws._sender.sendFrame(...):
    • Sender.frame remains untouched (still native frame generator)
    • _sender.sendFrame path injects trace context into JSON text-frame payloads and creates websocket.send span
const ws = new WebSocket('ws://localhost:8085/otel-ws');

ws.on('message', (data) => {
  // already under extracted context
  console.log(data);
});

const sender = (ws as any)._sender;
const frame = (WebSocket as any).Sender.frame(
  Buffer.from(JSON.stringify({ text: 'raw frame' }), 'utf8'),
  { fin: true, mask: true, opcode: 1, readOnly: false },
);
sender.sendFrame([Buffer.concat(frame)]);

Internal API caution

ws._sender and WebSocket.Sender.frame are ws internal APIs and may change between ws versions. otel-ws does not patch Sender.frame; it only instruments _sender.sendFrame and safely skips when internals are unavailable.

Spans created

| Operation | Span name | Kind | |-----------|-----------|------| | send | websocket.send | Producer | | Incoming message | websocket.receive | Consumer |

websocket.receive is a child of the extracted sender context when trace context is present.

TracerProvider

By default the package uses otel.GetTracerProvider(). Override in your app init:

import { trace } from '@opentelemetry/api';
// ... create and register your NodeTracerProvider as global

Diagnostic logging

The package logs via @opentelemetry/api's diag — silent by default. Enable in your app:

import { diag, DiagConsoleLogger, DiagLogLevel } from '@opentelemetry/api';
diag.setLogger(new DiagConsoleLogger(), DiagLogLevel.DEBUG);

| Level | Events logged | |-------|--------------| | DEBUG | JSON parse fallback on receive | | ERROR | Serialization failure on send, socket send failure |

License

Apache-2.0