Socket
Socket
Sign inDemoInstall

@opencensus/exporter-object

Package Overview
Dependencies
8
Maintainers
7
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @opencensus/exporter-object

OpenCensus Object Exporter allows the user to collect and access traces with OpenCensus Node.js.


Version published
Weekly downloads
1
Maintainers
7
Created
Weekly downloads
 

Changelog

Source

0.0.20 - 2020-02-18

  • fix(resources): GKE pod name label (#728)
  • chore: update dependency grpc to 1.24.2 (#750)
  • fix: core version (#753)
  • chore(deps): bump handlebars (#719)

Readme

Source

OpenCensus Object Exporter

Gitter chat

OpenCensus Object Trace Exporter allows the user to collect and programmatically access traces with OpenCensus Node.js. This module is useful for when you need to access collected spans programmatically, for example for testing purposes.

Installation

Install OpenCensus Object Trace Exporter with:

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

Usage

For javascript:

const tracing = require('@opencensus/nodejs');
const { ObjectTraceExporter } = require('@opencensus/exporter-object');

const exporter = new ObjectTraceExporter();

Similarly for Typescript:

import * as tracing from '@opencensus/nodejs';
import { ObjectTraceExporter } from '@opencensus/exporter-object';
const exporter = new ObjectTraceExporter();

Now, register the exporter and start tracing.

tracing.start({'exporter': exporter});

or

tracing.registerExporter(exporter).start();

Viewing your traces

exporter.startedSpans.forEach((span: Span)) => {}
exporter.endedSpans.forEach((span: Span)) => {}
exporter.publishedSpans.forEach((span: Span)) => {}

Reset exporter

Empties startedSpans, endedSpans and publishedSpans span stores.

exporter.reset();

Keywords

FAQs

Last updated on 19 Feb 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc