Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@opentelemetry/plugin-grpc
Advanced tools
This module provides automatic instrumentation for grpc
. Currently, version 1.x
of the Node.js gRPC library is supported.
For automatic instrumentation see the @opentelemetry/node package.
npm install --save @opentelemetry/plugin-grpc
OpenTelemetry gRPC Instrumentation allows the user to automatically collect trace data and export them to the backend of choice, to give observability to distributed systems when working with gRPC.
To load a specific plugin (gRPC in this case), specify it in the Node Tracer's configuration.
const { NodeTracer } = require('@opentelemetry/node');
const tracer = new NodeTracer({
plugins: {
grpc: {
enabled: true,
// You may use a package name or absolute path to the file.
path: '@opentelemetry/plugin-grpc',
}
}
});
To load all the supported plugins, use below approach. Each plugin is only loaded when the module that it patches is loaded; in other words, there is no computational overhead for listing plugins for unused modules.
const { NodeTracer } = require('@opentelemetry/node');
const tracer = new NodeTracer();
See examples/grpc for a short example.
Apache 2.0 - See LICENSE for more information.
0.3.0
Released 2019-12-13
opentelemetry-core
, opentelemetry-node
, opentelemetry-plugin-dns
, opentelemetry-plugin-document-load
, opentelemetry-plugin-grpc
, opentelemetry-plugin-postgres
, opentelemetry-plugin-redis
, opentelemetry-tracing
, opentelemetry-types
opentelemetry-plugin-document-load
opentelemetry-plugin-http
, opentelemetry-plugin-https
opentelemetry-core
, opentelemetry-metrics
, opentelemetry-types
opentelemetry-metrics
opentelemetry-core
, opentelemetry-plugin-document-load
, opentelemetry-tracing
, opentelemetry-web
opentelemetry-exporter-jaeger
opentelemetry-plugin-dns
opentelemetry-plugin-http
opentelemetry-shim-opentracing
main
in package.jsonopentelemetry-exporter-zipkin
opentelemetry-plugin-grpc
opentelemetry-core
opentelemetry-plugin-mongodb-core
opentelemetry-metrics
opentelemetry-plugin-redis
opentelemetry-exporter-prometheus
opentelemetry-types
opentelemetry-plugin-postgres
opentelemetry-core
, opentelemetry-exporter-collector
opentelemetry-node
, opentelemetry-plugin-mysql
opentelemetry-plugin-redis
opentelemetry-plugin-mongodb-core
opentelemetry-exporter-prometheus
opentelemetry-metrics
opentelemetry-scope-zone-peer-dep
, opentelemetry-scope-zone
, opentelemetry-web
opentelemetry-core
, opentelemetry-plugin-document-load
opentelemetry-core
, opentelemetry-metrics
, opentelemetry-types
opentelemetry-metrics
, opentelemetry-types
FAQs
OpenTelemetry grpc automatic instrumentation package.
The npm package @opentelemetry/plugin-grpc receives a total of 190 weekly downloads. As such, @opentelemetry/plugin-grpc popularity was classified as not popular.
We found that @opentelemetry/plugin-grpc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.