Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@risingstack/jaeger

Package Overview
Dependencies
Maintainers
4
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@risingstack/jaeger

Out of the box OpenTracing instrumentation for Node.js and Jaeger

  • 1.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by200%
Maintainers
4
Weekly downloads
 
Created
Source

jaeger-node

Out of the box distributed tracing for Node.js applications.

WARNING: do not use in production yet

Technologies

  • async_hooks
  • Jaeger
  • OpenTracing

Requirements

  • Node.js, >= v8
  • Jaeger

Getting started

npm install @risingstack/jaeger
// must be in the first two lines of your application
const Tracer = require('@risingstack/jaeger')
const tracer = new Tracer({
  serviceName: 'my-server-2',
  tags: {
    gitTag: 'foobar'
  }
})

// rest of your code
const express = require('express')
// ...

To start Jaeger and visit it's dashboard:

docker run -d -p5775:5775/udp -p6831:6831/udp -p6832:6832/udp -p5778:5778 -p16686:16686 -p14268:14268 jaegertracing/all-in-one:latest && open http://localhost:16686

Example

The example require a running MongoDB.

npm run example
curl http://localhost:3000
open http://localhost:16686

Jaeger Node.js tracing

API

new Tracer(options)

Create a new Tracer and instrument modules.

  • options.serviceName: Name of your service
    • required
    • example: 'my-service-1'
  • options.tags: Meta tags
    • optional
    • example: { gitHash: 'foobar' }
  • options.maxSamplesPerSecond: maximum number of samples per second
    • optional
    • default: 1
  • options.sender: sender configuration (Your Jaeger backend)
    • optional
    • default: { host: 'localhost', port: 6832, maxPacketSize: 65000 }

Instrumentations

Known issues

TODO

  • more database instrumentation: MySQL, Redis etc.
  • messaging broker instrumentation: RabbitMQ, Kafka etc.
  • test coverage
  • multiple sampling algorithms

Keywords

FAQs

Package last updated on 21 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc