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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@usvc/component-tracer

v0.0.1

Published

Distributed trace management package using Zipkin for use in an Express application.

Downloads

7

Readme

@usvc/component-tracer

Distributed trace management package using Zipkin for use in an Express application.

Scope

  • [x] Creation of a tracer
  • [x] Allow for configuration of sample rate
  • [x] Allow for configuration of headers sent to Zipkin service
  • [x] Allow for configuration of Zipkin service URL
  • [x] Allow for configuration of trace ID bit count

Installation

npm i @usvc/component-tracer;
# OR
yarn add @usvc/component-tracer;

Usage

// es5
const {
  createTracer,
  getContextProviderMiddleware,
} = require('@usvc/component-tracer');

// es6
import {
  createTracer,
  getContextProviderMiddleware,
} from '@usvc/component-tracer';

Basic

const express = require('express');
// require module as per ^
const tracer = createTracer();
const app = express();
app.use(tracer.getExpressMiddleware());
// ...

Full Configuration

const express = require('express');
// require module as per ^
const tracer = createTracer({
  sampleRate: 1,
  headers: {},
  httpTimeout: 5.0,
  url: 'http://localhost:9411',
  traceId128bit: true,
});
const app = express();
app.use(tracer.getExpressMiddleware());
// ...

API Documentaiton

createTracer(:options)

Creates the tracer object. The :options parameter has the following schema:

| Key | Type | Defaults To | Description | | --- | --- | --- | --- | | sampleRate | Number | 1 | The frequency of which to sample requests - 1 means sample everything, 0 means sample nothing | | headers | Object | {} | Additional headers to be sent to the Zipkin service - use this to add stuff like X-Authorization headers | | httpTimeout | Number | 5.0 | Timeout in seconds for a call to the Zipkin service | | url | URL | http://localhost:9411 | The base URL of your Zipkin service | | traceId128Bit | Boolean | true | Enables 128-bit length trace IDs |

The returned object has the following methods:

| Method | Description | | --- | --- | | getContext() | Retrieves the internally created context | | getExpressMiddleware() | Retrieves an array of middlewares usable via express().use(...) | | getTracer() | Retrieves the raw Zipkin tracer |

getContextProviderMiddleware(:options)

Returns an Express middleware that adds a .context property to the Express Request object and passes it downstream. The :options has the following schema:

| Key | Type | Defaults To | Description | | --- | --- | --- | --- | | context | Context<T> | undefined | The context object retrievable via the .getContext() method of the object returned by createTracer(). Alternatively, can used alone. |

Examples

WIP

Development

WIP

License

This package is licensed under the MIT license.

View the license at LICENSE.

Changelog

0.0.x

0.0.1

  • Initial release

Contributors

| Name | Email | Website | About Me | | --- | --- | --- | --- | | zephinzer | - | https://github.com/zephinzer | - |

Cheers