Socket
Socket
Sign inDemoInstall

@opentelemetry/exporter-metrics-otlp-proto

Package Overview
Dependencies
Maintainers
3
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opentelemetry/exporter-metrics-otlp-proto - npm Package Compare versions

Comparing version 0.40.0 to 0.41.0

13

build/src/index.js

@@ -17,14 +17,5 @@ "use strict";

*/
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./OTLPMetricExporter"), exports);
const tslib_1 = require("tslib");
(0, tslib_1.__exportStar)(require("./OTLPMetricExporter"), exports);
//# sourceMappingURL=index.js.map

2

build/src/version.d.ts

@@ -1,2 +0,2 @@

export declare const VERSION = "0.40.0";
export declare const VERSION = "0.41.0";
//# sourceMappingURL=version.d.ts.map

@@ -20,3 +20,3 @@ "use strict";

// this is autogenerated file, see scripts/version-update.js
exports.VERSION = '0.40.0';
exports.VERSION = '0.41.0';
//# sourceMappingURL=version.js.map
{
"name": "@opentelemetry/exporter-metrics-otlp-proto",
"version": "0.40.0",
"version": "0.41.0",
"description": "OpenTelemetry Collector Metrics Exporter allows user to send collected metrics to the OpenTelemetry Collector using protobuf over HTTP",

@@ -18,3 +18,3 @@ "main": "build/src/index.js",

"watch": "tsc -w",
"precompile": "lerna run version --scope $(npm pkg get name) --include-dependencies",
"precompile": "cross-var lerna run version --scope $npm_package_name --include-dependencies",
"prewatch": "npm run precompile",

@@ -51,12 +51,14 @@ "peer-api-check": "node ../../../scripts/peer-api-check.js",

"devDependencies": {
"@babel/core": "7.16.0",
"@babel/core": "7.22.6",
"@opentelemetry/api": "1.4.1",
"@types/mocha": "10.0.0",
"@types/mocha": "10.0.1",
"@types/node": "18.6.5",
"@types/sinon": "10.0.13",
"@types/sinon": "10.0.15",
"codecov": "3.8.3",
"cpx": "1.5.0",
"mocha": "10.0.0",
"cross-var": "1.1.0",
"lerna": "7.1.1",
"mocha": "10.2.0",
"nyc": "15.1.0",
"sinon": "15.0.0",
"sinon": "15.1.2",
"ts-loader": "8.4.0",

@@ -70,13 +72,14 @@ "ts-mocha": "10.0.0",

"dependencies": {
"@opentelemetry/core": "1.14.0",
"@opentelemetry/exporter-metrics-otlp-http": "0.40.0",
"@opentelemetry/otlp-exporter-base": "0.40.0",
"@opentelemetry/otlp-proto-exporter-base": "0.40.0",
"@opentelemetry/otlp-transformer": "0.40.0",
"@opentelemetry/resources": "1.14.0",
"@opentelemetry/sdk-metrics": "1.14.0"
"@opentelemetry/core": "1.15.0",
"@opentelemetry/exporter-metrics-otlp-http": "0.41.0",
"@opentelemetry/otlp-exporter-base": "0.41.0",
"@opentelemetry/otlp-proto-exporter-base": "0.41.0",
"@opentelemetry/otlp-transformer": "0.41.0",
"@opentelemetry/resources": "1.15.0",
"@opentelemetry/sdk-metrics": "1.15.0",
"tslib": "^2.3.1"
},
"homepage": "https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-exporter-metrics-otlp-proto",
"sideEffects": false,
"gitHead": "edebbcc757535bc88f01340409dbbecc0bb6ccf8"
"gitHead": "06e919d6c909e8cc8e28b6624d9843f401d9b059"
}

@@ -8,4 +8,3 @@ # OpenTelemetry Collector Metrics Exporter for node with protobuf

This module provides exporter for node to be used with OTLP (`http/protobuf`) compatible receivers.
Compatible with [opentelemetry-collector][opentelemetry-collector-url] versions `>=0.32 <=0.53`.
This module provides a metrics-exporter for OTLP (http/protobuf) using protocol version `v0.20.0`.

@@ -55,3 +54,3 @@ ## Installation

| OTEL_EXPORTER_OTLP_METRICS_ENDPOINT | The endpoint to send metrics to. By default `https://localhost:4318/v1/metrics` will be used. `v1/metrics` will not be appended automatically and has to be added explicitly. |
| OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE | The exporters aggregation temporality preference. Valid values are `cumulative`, and `delta`. `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. By default `cumulative` 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` selects delta aggregation temporality for Counter and Histogram instrument kinds, and selects cumulative aggregation for UpDownCounter, Asynchronous Counter and Asynchronous UpDownCounter instrument kinds. By default `cumulative` is used. |

@@ -58,0 +57,0 @@ > Settings configured programmatically take precedence over environment variables. Per-signal environment variables take

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc