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

obzervo-agent

v1.0.1

Published

Obzervo Local & VPC Microservice Monitoring CLI Agent

Readme

obzervo-agent

Lightweight CLI monitoring agent for Obzervo API Observability Platform. Monitors private, local, or VPC endpoints and pushes health metrics to your Obzervo dashboard using API keys.

Install

npm install -g obzervo-agent

Usage

Option 1: CLI flags

obzervo monitor \
  --endpointId "YOUR_24_CHAR_ENDPOINT_ID" \
  --targetUrl "http://localhost:3000/health" \
  --key "obz_live_YOUR_API_KEY" \
  --method GET \
  --expectedStatus 200 \
  --interval 10000

Option 2: Config file

Create an obzervo.json in your project root:

{
  "endpointId": "YOUR_ENDPOINT_ID",
  "targetUrl": "http://localhost:3000/health",
  "apiKey": "obz_live_YOUR_API_KEY",
  "serverUrl": "http://localhost:5000",
  "interval": 10000
}

Then run:

obzervo monitor

How it works

  1. The agent sends an HTTP request to your targetUrl at the configured interval.
  2. It records the response status code, latency (ms), and payload size.
  3. It pushes that data to your Obzervo server via POST /api/v1/telemetry/push using the x-api-key header.
  4. Your Obzervo dashboard updates in real time over WebSockets.

CLI Options

| Flag | Default | Description | |---|---|---| | --endpointId | (required) | The Obzervo endpoint ID to report against | | --targetUrl | (required) | The URL to monitor | | --key | (required) | Your Obzervo API key (obz_live_...) | | --method | GET | HTTP method for the health check | | --expectedStatus | 200 | Expected healthy status code | | --interval | 10000 | Polling interval in milliseconds | | --serverUrl | http://localhost:5000 | Obzervo server base URL |

Security

  • API keys are sent via the x-api-key HTTP header, never in query strings or URLs.
  • The Obzervo server validates keys by comparing SHA-256 hashes and verifies endpoint ownership before accepting data.