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

@onlineapps/conn-base-monitoring

v1.0.12

Published

Monitoring connector for service-wrapper integration

Readme

@onlineapps/conn-base-monitoring

Overview

Monitoring connector providing OpenTelemetry-based observability for all services. Thin wrapper around monitoring-core factory.

Installation

npm install @onlineapps/conn-base-monitoring

Features

  • OpenTelemetry tracing integration
  • Workflow tracking with correlation IDs
  • Automatic context propagation
  • Performance metrics collection
  • Configurable exporters

Usage

Basic Setup

const { MonitoringConnector } = require('@onlineapps/conn-base-monitoring');

const monitoring = new MonitoringConnector({
  serviceName: 'hello-service',
  enableTracing: true,
  enableMetrics: true
});

// Initialize monitoring
await monitoring.initialize();

// Create spans
const span = monitoring.startSpan('process_request');
try {
  // Your business logic
  await processRequest();
} finally {
  monitoring.endSpan(span);
}

Workflow Tracking

// Extract context from message headers
const context = monitoring.extractContext(message.headers);

// Create child span with workflow context
const span = monitoring.startSpan('step_execution', {
  workflowId: context.workflowId,
  parentSpanId: context.spanId
});

// Track workflow step
monitoring.trackWorkflowStep({
  workflowId: context.workflowId,
  step: 'validation',
  status: 'completed',
  duration: 45
});

Configuration

Environment Variables

OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
OTEL_SERVICE_NAME=my-service
OTEL_TRACES_EXPORTER=otlp
OTEL_METRICS_EXPORTER=otlp

Options

{
  serviceName: 'service-name',      // Required
  enableTracing: true,              // Default: true
  enableMetrics: true,              // Default: true
  enableLogging: true,              // Default: true
  exporterUrl: 'http://...',        // Optional, overrides env
  samplingRate: 1.0,                // Default: 1.0 (100%)
}

API Reference

MonitoringConnector

initialize()

Initializes the monitoring system with configured exporters.

startSpan(name, attributes?)

Creates a new span with optional attributes.

endSpan(span)

Ends the specified span.

extractContext(headers)

Extracts tracing context from message headers.

injectContext(headers, context)

Injects tracing context into message headers.

trackWorkflowStep(data)

Records workflow step execution metrics.

getActiveWorkflows()

Returns list of currently active workflows.

shutdown()

Gracefully shuts down the monitoring system.

Integration with Service Wrapper

The monitoring connector is automatically integrated when using service-wrapper:

const { ServiceWrapper } = require('@onlineapps/service-wrapper');

const wrapper = new ServiceWrapper({
  monitoring: {
    enabled: true,
    serviceName: 'my-service'
  }
});

// Monitoring is automatically configured

Metrics Collected

Automatic Metrics

  • Request duration (histogram)
  • Request count (counter)
  • Active requests (gauge)
  • Error rate (counter)
  • Queue depth (gauge)

Custom Metrics

// Increment counter
monitoring.incrementCounter('custom_metric', { tag: 'value' });

// Record histogram
monitoring.recordHistogram('processing_time', 123, { type: 'invoice' });

// Update gauge
monitoring.setGauge('queue_depth', 45);

Testing

npm test                 # Run all tests
npm run test:unit        # Unit tests only
npm run test:component   # Component tests

Dependencies

  • @onlineapps/monitoring-core - Core monitoring factory
  • @opentelemetry/api - OpenTelemetry API
  • @opentelemetry/sdk-node - OpenTelemetry SDK

Related Documentation


Version: 1.0.0 | License: MIT