0.22.0 • Published 3 years ago

zipkin-instrumentation-grpc-client v0.22.0

Weekly downloads
25
License
Apache-2.0
Repository
github
Last release
3 years ago

zipkin-instrumentation-grpc-client

GRPC client interceptor for Zipkin.

Usage

The library is a GRPC interceptor and can be used as:

const grpc = require('grpc');
const protoLoader = require('@grpc/proto-loader');

const {Tracer, ExplicitContext, ConsoleRecorder} = require('zipkin');
const grpcInstrumentation = require('zipkin-instrumentation-grpc-client');

const PROTO_PATH = __dirname + '/protos/weather.proto';
const PROTO_OPTIONS = { keepCase: true, enums: String, defaults: true, oneofs: true };

// setup zipkin tracer
const ctxImpl = new ExplicitContext();
const recorder = new ConsoleRecorder();
const localServiceName = 'service-a'; // name of this application
const tracer = new Tracer({ctxImpl, recorder, localServiceName});

// setup grpc client
const definition = protoLoader.loadSync(PROTO_PATH, PROTO_OPTIONS);
const weather = grpc.loadPackageDefinition(definition).weather;
const client = new weather.WeatherService('localhost:50051', grpc.credentials.createInsecure());

//setup interceptor
const remoteServiceName = 'weather-service';
const interceptor = grpcInstrumentation(grpc, {tracer, remoteServiceName});

client.getTemperature({ location: 'Tahoe'}, { interceptors: [interceptor] }, (error, response) => {
    console.info(`temprature in Tahoe is: ${response.temperature} `);
});

The important snippet is:

const interceptor = grpcInstrumentation(grpc, {tracer, remoteServiceName});

client.getTemperature({ location: 'Tahoe'}, { interceptors: [interceptor] }, (error, response) => {
    console.info(`temprature in Tahoe is: ${response.temperature} `);
});
0.22.1-alpha.6

3 years ago

0.22.1-alpha.3

4 years ago

0.22.0

4 years ago

0.21.0

4 years ago

0.20.0

4 years ago

0.19.2-alpha.6

4 years ago

0.19.2

4 years ago

0.19.2-alpha.3

4 years ago

0.19.2-alpha.1

5 years ago

0.19.1

5 years ago

0.20.0-alpha.1

5 years ago

0.20.0-alpha.0

5 years ago

0.19.0

5 years ago

0.18.6

5 years ago

0.18.5

5 years ago

0.18.4

5 years ago

0.18.4-alpha.7

5 years ago

0.19.0-alpha.4

5 years ago

0.18.3

5 years ago

0.18.2

5 years ago

0.18.1

5 years ago

0.18.0

5 years ago

0.17.1

5 years ago

0.16.2

5 years ago

0.16.1

5 years ago

0.16.0

5 years ago

0.15.0

5 years ago