zipkin-instrumentation-got

Interceptor for got clients

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
zipkin-instrumentation-got
0.0.16 years ago6 years agoMinified + gzip package size for zipkin-instrumentation-got in KB

Readme

zipkin-instrumetation-got
This library will wrap the got client.

Usage

const {Tracer} = require('zipkin');
const got = require('got');
const zipkinClient = require('zipkin-instrumentation-got');

const tracer = new Tracer({ctxImpl, recorder}); // configure your tracer properly here

const zipkinGot = zipkinClient(tracer, got);

// Your application code here
zipkinGot('todomvc.com')
  .then(response => {
    console.log(response.body);
    //=> '<!doctype html> ...'
  })
  .catch(error => {
    console.log(error.response.body);
    //=> 'Internal server error ...'
  });

// Streams
zipkinGot.stream('todomvc.com').pipe(fs.createWriteStream('index.html'));

// For POST, PUT and PATCH methods got.stream returns a WritableStream
fs.createReadStream('index.html').pipe(zipkinGot.stream.post('todomvc.com'));