JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q55569F
  • License Apache-2.0

OpenCensus Instana Exporter allows the user to send collected traces with OpenCensus Node.js to Instana.

Package Exports

  • @opencensus/exporter-instana

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@opencensus/exporter-instana) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

OpenCensus Instana Trace Exporter

Gitter chat

OpenCensus Instana Trace Exporter allows the user to send collected traces with OpenCensus Node.js to Instana.

Instana is a distributed tracing system. Instana provides AI Powered Application and Infrastructure Monitoring, allowing you to deliver Faster With Confidence, and automatic Analysis and Optimization.

The library is in alpha stage and the API is subject to change.

Installation

Install OpenCensus Instana Exporter with:

npm install @opencensus/nodejs
npm install @opencensus/exporter-instana

Usage

To use Instana as your exporter, first ensure that you have an Instana agent running on your system and reporting to your environment. The Instana OpenCensus exporter directly communicates with the Instana agent in order to transmit data to Instana.

const tracing = require('@opencensus/nodejs');
const instana = require('@opencensus/exporter-instana');

tracing.start({
  exporter: new instana.InstanaTraceExporter()
});