Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@opentelemetry/exporter-metrics-otlp-grpc
Advanced tools
OpenTelemetry Collector Metrics Exporter allows user to send collected metrics to the OpenTelemetry Collector
@opentelemetry/exporter-metrics-otlp-grpc is an npm package that allows you to export metrics data using the OpenTelemetry Protocol (OTLP) over gRPC. This package is part of the OpenTelemetry project, which provides a set of APIs, libraries, agents, and instrumentation to enable observability for cloud-native software. The package is used to send collected metrics data to an OpenTelemetry Collector or other backend that supports OTLP over gRPC.
Exporting Metrics
This code sample demonstrates how to set up the OTLP gRPC exporter to send metrics data to a specified endpoint. It creates a meter provider, sets up an exporter, and creates a counter metric that increments every second.
const { MeterProvider } = require('@opentelemetry/sdk-metrics-base');
const { OTLPMetricExporter } = require('@opentelemetry/exporter-metrics-otlp-grpc');
const exporter = new OTLPMetricExporter({
url: 'grpc://localhost:4317',
});
const meterProvider = new MeterProvider({
exporter,
interval: 2000,
});
const meter = meterProvider.getMeter('example-meter');
const counter = meter.createCounter('example_counter');
setInterval(() => {
counter.add(1, { key: 'value' });
}, 1000);
This package is similar to @opentelemetry/exporter-metrics-otlp-grpc but uses HTTP instead of gRPC to export metrics data. It is useful in environments where HTTP is preferred or required over gRPC.
This package exports metrics in a format that can be scraped by Prometheus. It is useful for integrating OpenTelemetry metrics with Prometheus-based monitoring systems.
This package exports both traces and metrics to the OpenTelemetry Collector using various protocols including gRPC and HTTP. It provides a more comprehensive solution for exporting telemetry data.
Note: This is an experimental package under active development. New releases may include breaking changes.
This module provides a metrics-exporter for OTLP (gRPC) using protocol version v0.20.0
.
npm install --save @opentelemetry/exporter-metrics-otlp-grpc
The OpenTelemetry Collector Exporter does not have a service name configuration.
In order to set the service name, use the service.name
resource attribute as prescribed in
the OpenTelemetry Resource Semantic Conventions.
To see sample code and documentation for the traces exporter, as well as instructions for using TLS, visit
the Collector Trace Exporter for web and node.
The OTLPMetricsExporter in Node expects the URL to only be the hostname. It will not work with /v1/metrics
. All
options that work with trace also work with metrics.
const { MeterProvider, PeriodicExportingMetricReader } = require('@opentelemetry/sdk-metrics');
const { OTLPMetricExporter } = require('@opentelemetry/exporter-metrics-otlp-grpc');
const collectorOptions = {
// url is optional and can be omitted - default is http://localhost:4317
// Unix domain sockets are also supported: 'unix:///path/to/socket.sock'
url: 'http://<collector-hostname>:<port>',
};
const metricExporter = new OTLPMetricExporter(collectorOptions);
const meterProvider = new MeterProvider({});
meterProvider.addMetricReader(new PeriodicExportingMetricReader({
exporter: metricExporter,
exportIntervalMillis: 1000,
}));
['SIGINT', 'SIGTERM'].forEach(signal => {
process.on(signal, () => meterProvider.shutdown().catch(console.error));
});
// Now, start recording data
const meter = meterProvider.getMeter('example-meter');
const counter = meter.createCounter('metric_name');
counter.add(10, { 'key': 'value' });
In addition to settings passed to the constructor, the exporter also supports configuration via environment variables:
Environment variable | Description |
---|---|
OTEL_EXPORTER_OTLP_ENDPOINT | The endpoint to send metrics to. This will also be used for the traces exporter if OTEL_EXPORTER_OTLP_TRACES_ENDPOINT is not configured. By default localhost:4317 will be used. |
OTEL_EXPORTER_OTLP_METRICS_ENDPOINT | The endpoint to send metrics to. By default localhost:4317 will be used. |
OTEL_EXPORTER_OTLP_COMPRESSION | The compression type to use on OTLP trace, metric, and log requests. Options include gzip. By default no compression will be used. |
OTEL_EXPORTER_OTLP_METRICS_INSECURE | Whether to enable client transport security for the exporter's gRPC connection for metric requests. This option only applies to OTLP/gRPC when an endpoint is provided without the http or https scheme. Options include true or false. By default insecure is false which creates a secure connection. |
OTEL_EXPORTER_OTLP_INSECURE | Whether to enable client transport security for the exporter's gRPC connection for trace, metric and log requests. This option only applies to OTLP/gRPC when an endpoint is provided without the http or https scheme. Options include true or false. By default insecure is false which creates a secure connection. |
OTEL_EXPORTER_OTLP_METRICS_CERTIFICATE | The path to the file containing trusted root certificate to use when verifying an OTLP metric server's TLS credentials. By default the host platform's trusted root certificate is used. |
OTEL_EXPORTER_OTLP_CERTIFICATE | The path to the file containing trusted root certificate to use when verifying an OTLP trace, metric, or log server's TLS credentials. By default the host platform's trusted root certificate is used. |
OTEL_EXPORTER_OTLP_METRICS_CLIENT_KEY | The path to the file containing private client key to use when verifying an OTLP metric client's TLS credentials. Must provide a client certificate/chain when providing a private client key. By default no client key file is used. |
OTEL_EXPORTER_OTLP_CLIENT_KEY | The path to the file containing private client key to use when verifying an OTLP trace, metric or log client's TLS credentials. Must provide a client certificate/chain when providing a private client key. By default no client key file is used. |
OTEL_EXPORTER_OTLP_METRICS_CLIENT_CERTIFICATE | The path to the file containing trusted client certificate/chain for clients private key to use when verifying an OTLP metric server's TLS credentials. Must provide a private client key when providing a certificate/chain. By default no chain file is used. |
OTEL_EXPORTER_OTLP_CLIENT_CERTIFICATE | The path to the file containing trusted client certificate/chain for clients private key to use when verifying an OTLP trace, metric and log server's TLS credentials. Must provide a private client key when providing a certificate/chain. By default no chain file is used. |
OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE | The exporters aggregation temporality preference. Valid values are cumulative , delta , and lowmemory . cumulative selects cumulative temporality for all instrument kinds. delta selects delta aggregation temporality for Counter, Asynchronous Counter and Histogram instrument kinds, and selects cumulative aggregation for UpDownCounter and Asynchronous UpDownCounter instrument kinds. lowmemory select delta aggregation temporality for Synchronous Counter and Histogram instrument kinds, and selects cumulative aggregation for Synchronous UpDownCounter, Asynchronous Counter and Asynchronous UpDownCounter instrument kinds. By default cumulative is used. |
Settings configured programmatically take precedence over environment variables. Per-signal environment variables take precedence over non-per-signal environment variables.
examples/otlp-exporter-node
Apache 2.0 - See LICENSE for more information.
FAQs
OpenTelemetry Collector Metrics Exporter allows user to send collected metrics to the OpenTelemetry Collector
The npm package @opentelemetry/exporter-metrics-otlp-grpc receives a total of 445,950 weekly downloads. As such, @opentelemetry/exporter-metrics-otlp-grpc popularity was classified as popular.
We found that @opentelemetry/exporter-metrics-otlp-grpc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.