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.1.2

Published

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

Downloads

264

Readme

@marz32one/otel-ws

Native ws OpenTelemetry instrumentation for Node.js.

Propagates W3C Trace Context (traceparent / tracestate) in the JSON message body using a flat wire format compatible with @marz32one/otel-rxjs-ws and the Go worker WebSocket broadcasts.

Wire format

Trace headers are merged into the outgoing JSON object (flat — no wrapper key):

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

On receive, traceparent and tracestate are extracted from the top-level fields; the remainder is returned as the message payload. Plain text / non-JSON messages are passed through unchanged.

Install

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

Usage

Connect and use

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

const socket = await connect('ws://localhost:8085/otel-ws');

socket.onMessage((msg, ctx) => {
  // msg = { your: 'payload' } — trace fields stripped
  // ctx = OTel context extracted from the sender's traceparent
  console.log('recv', msg);
});

socket.send({ text: 'hello' });
socket.close();

Instrument an existing WebSocket

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

const ws = new WebSocket('ws://localhost:8085/otel-ws');
const socket = instrumentSocket(ws);

socket.onMessage((msg, ctx) => console.log(msg));
socket.send({ text: 'hi' });

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