New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@polywrap/tracing-js

Package Overview
Dependencies
Maintainers
2
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@polywrap/tracing-js

Polywrap Core Tracing

0.9.4
Source
npm
Version published
Weekly downloads
120
12.15%
Maintainers
2
Weekly downloads
 
Created
Source

@polywrap/tracing-js

Steps to use tracing

  • Run the zipkin client using docker

    docker run -d -p 9411:9411 openzipkin/zipkin
    
  • Enable tracing when creating the PolywrapClient

    const client = new PolywrapClient({
      ...,
      tracingEnabled: true
    })
    

    Or you can turn on tracing while running the PolywrapClient by calling the tracingEnabled method of PolywrapClient.

    // Turn tracing off
    client.tracingEnabled(false);
    
  • Once you run the app and started producing logs, go to zipkin client which is running on http://localhost:9411. There you can click RUN QUERY button without any filters to show all the logs.

FAQs

Package last updated on 04 Nov 2022

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