npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@opentelemetry/otlp-exporter-base

v0.222.0

Published

OpenTelemetry OTLP Exporter base (for internal use only)

Readme

OpenTelemetry Collector Exporter for web and node

NPM Published Version Apache License

Note: This package is intended for internal use only.

Note: This is an experimental package under active development. New releases may include breaking changes.

This module provides base components for OTLP Exporters, both Web and Node.js.

Installation

npm install --save @opentelemetry/otlp-exporter-base

HTTP exporter configuration

HTTP JSON and HTTP/protobuf exporters for traces, metrics, and logs share these configuration options. Node.js exporters accept OTLPExporterNodeConfigBase, which also includes the options from OTLPExporterConfigBase. Configuration precedence is: programmatic options, then per-signal environment variables, then general environment variables, then built-in defaults.

| Option | Type | Default | Description | | ------------------ | ------------------------------------------------------------- | --------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | | url | string | undefined (default resolved per precedence above) | Collector endpoint URL. | | headers | Record<string, string> \| HeadersFactory | undefined | Custom HTTP headers. A factory function may be async and must not throw. Exporters still apply required transport headers. | | concurrencyLimit | number | 30 | Maximum number of in-flight export requests. | | timeoutMillis | number | 10000 | Maximum time, in milliseconds, to wait for each batch export. | | compression | CompressionAlgorithm.NONE \| CompressionAlgorithm.GZIP | CompressionAlgorithm.NONE | Compression for outgoing OTLP HTTP requests in Node.js. | | keepAlive | boolean | true | Sets keepAlive on the Node.js HTTP or HTTPS agent created by the exporter. A keepAlive value in httpAgentOptions takes precedence. | | httpAgentOptions | http.AgentOptions \| https.AgentOptions \| HttpAgentFactory | Agent options with keepAlive: true | Custom Node.js HTTP or HTTPS agent options, or a factory function that receives the request protocol and returns an agent. | | userAgent | string | The exporter's default user agent | Prefix to add to the exporter's default User-Agent header in Node.js. |

| Option | General environment variable | Signal-specific environment variables | | ----------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | | url | OTEL_EXPORTER_OTLP_ENDPOINT | OTEL_EXPORTER_OTLP_TRACES_ENDPOINT, OTEL_EXPORTER_OTLP_METRICS_ENDPOINT, OTEL_EXPORTER_OTLP_LOGS_ENDPOINT | | headers | OTEL_EXPORTER_OTLP_HEADERS | OTEL_EXPORTER_OTLP_TRACES_HEADERS, OTEL_EXPORTER_OTLP_METRICS_HEADERS, OTEL_EXPORTER_OTLP_LOGS_HEADERS | | timeoutMillis | OTEL_EXPORTER_OTLP_TIMEOUT | OTEL_EXPORTER_OTLP_TRACES_TIMEOUT, OTEL_EXPORTER_OTLP_METRICS_TIMEOUT, OTEL_EXPORTER_OTLP_LOGS_TIMEOUT | | compression | OTEL_EXPORTER_OTLP_COMPRESSION | OTEL_EXPORTER_OTLP_TRACES_COMPRESSION, OTEL_EXPORTER_OTLP_METRICS_COMPRESSION, OTEL_EXPORTER_OTLP_LOGS_COMPRESSION | | concurrencyLimit | Not supported | Not supported | | keepAlive | Not supported | Not supported | | httpAgentOptions.ca | OTEL_EXPORTER_OTLP_CERTIFICATE | OTEL_EXPORTER_OTLP_{TRACES,METRICS,LOGS}_CERTIFICATE | | httpAgentOptions.cert | OTEL_EXPORTER_OTLP_CLIENT_CERTIFICATE | OTEL_EXPORTER_OTLP_{TRACES,METRICS,LOGS}_CLIENT_CERTIFICATE | | httpAgentOptions.key | OTEL_EXPORTER_OTLP_CLIENT_KEY | OTEL_EXPORTER_OTLP_{TRACES,METRICS,LOGS}_CLIENT_KEY | | userAgent | Not supported | Not supported |

GRPC

For GRPC please check npm-url-grpc

Useful links

License

Apache 2.0 - See LICENSE for more information.