Socket
Socket
Sign inDemoInstall

@opentelemetry/otlp-transformer

Package Overview
Dependencies
Maintainers
3
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opentelemetry/otlp-transformer - npm Package Compare versions

Comparing version 0.43.0 to 0.44.0

build/esm/common/index.d.ts

4

build/esm/common/types.d.ts

@@ -46,2 +46,6 @@ /** Properties of an InstrumentationScope. */

}
export interface IFixed64 {
low: number;
high: number;
}
//# sourceMappingURL=types.d.ts.map
export * from './common/types';
export * from './common';
export * from './metrics/types';

@@ -3,0 +4,0 @@ export * from './resource/types';

@@ -17,2 +17,3 @@ /*

export * from './common/types';
export * from './common';
export * from './metrics/types';

@@ -19,0 +20,0 @@ export * from './resource/types';

7

build/esm/logs/index.js

@@ -43,4 +43,5 @@ /*

};
import { hrTimeToFixed64Nanos } from '../common';
import { toAnyValue, toAttributes, toKeyValue } from '../common/internal';
import { hexToBase64, hrTimeToNanoseconds } from '@opentelemetry/core';
import { hexToBase64 } from '@opentelemetry/core';
export function createExportLogsServiceRequest(logRecords, useHex) {

@@ -106,4 +107,4 @@ return {

return {
timeUnixNano: hrTimeToNanoseconds(log.hrTime),
observedTimeUnixNano: hrTimeToNanoseconds(log.hrTimeObserved),
timeUnixNano: hrTimeToFixed64Nanos(log.hrTime),
observedTimeUnixNano: hrTimeToFixed64Nanos(log.hrTimeObserved),
severityNumber: toSeverityNumber(log.severityNumber),

@@ -110,0 +111,0 @@ severityText: log.severityText,

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

import type { IAnyValue, IInstrumentationScope, IKeyValue } from '../common/types';
import type { IAnyValue, IFixed64, IInstrumentationScope, IKeyValue } from '../common/types';
import type { IResource } from '../resource/types';

@@ -39,5 +39,5 @@ /** Properties of an ExportLogsServiceRequest. */

/** LogRecord timeUnixNano */
timeUnixNano: number;
timeUnixNano: IFixed64;
/** LogRecord observedTimeUnixNano */
observedTimeUnixNano: number;
observedTimeUnixNano: IFixed64;
/** LogRecord severityNumber */

@@ -44,0 +44,0 @@ severityNumber?: ESeverityNumber;

@@ -17,4 +17,4 @@ /*

import { ValueType } from '@opentelemetry/api';
import { hrTimeToNanoseconds } from '@opentelemetry/core';
import { AggregationTemporality, DataPointType, } from '@opentelemetry/sdk-metrics';
import { hrTimeToFixed64Nanos } from '../common';
import { toAttributes } from '../common/internal';

@@ -79,4 +79,4 @@ export function toResourceMetrics(resourceMetrics) {

attributes: toAttributes(dataPoint.attributes),
startTimeUnixNano: hrTimeToNanoseconds(dataPoint.startTime),
timeUnixNano: hrTimeToNanoseconds(dataPoint.endTime),
startTimeUnixNano: hrTimeToFixed64Nanos(dataPoint.startTime),
timeUnixNano: hrTimeToFixed64Nanos(dataPoint.endTime),
};

@@ -109,4 +109,4 @@ switch (valueType) {

max: histogram.max,
startTimeUnixNano: hrTimeToNanoseconds(dataPoint.startTime),
timeUnixNano: hrTimeToNanoseconds(dataPoint.endTime),
startTimeUnixNano: hrTimeToFixed64Nanos(dataPoint.startTime),
timeUnixNano: hrTimeToFixed64Nanos(dataPoint.endTime),
};

@@ -134,4 +134,4 @@ });

zeroCount: histogram.zeroCount,
startTimeUnixNano: hrTimeToNanoseconds(dataPoint.startTime),
timeUnixNano: hrTimeToNanoseconds(dataPoint.endTime),
startTimeUnixNano: hrTimeToFixed64Nanos(dataPoint.startTime),
timeUnixNano: hrTimeToFixed64Nanos(dataPoint.endTime),
};

@@ -138,0 +138,0 @@ });

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

import { IInstrumentationScope, IKeyValue } from '../common/types';
import { IFixed64, IInstrumentationScope, IKeyValue } from '../common/types';
import { IResource } from '../resource/types';

@@ -93,5 +93,5 @@ /** Properties of an ExportMetricsServiceRequest. */

/** NumberDataPoint startTimeUnixNano */
startTimeUnixNano?: number;
startTimeUnixNano?: IFixed64 | string;
/** NumberDataPoint timeUnixNano */
timeUnixNano?: number;
timeUnixNano?: IFixed64 | string;
/** NumberDataPoint asDouble */

@@ -111,5 +111,5 @@ asDouble?: number | null;

/** HistogramDataPoint startTimeUnixNano */
startTimeUnixNano?: number;
startTimeUnixNano?: IFixed64 | string;
/** HistogramDataPoint timeUnixNano */
timeUnixNano?: number;
timeUnixNano?: IFixed64 | string;
/** HistogramDataPoint count */

@@ -137,5 +137,5 @@ count?: number;

/** ExponentialHistogramDataPoint startTimeUnixNano */
startTimeUnixNano?: number;
startTimeUnixNano?: IFixed64 | string;
/** ExponentialHistogramDataPoint timeUnixNano */
timeUnixNano?: number;
timeUnixNano?: IFixed64 | string;
/** ExponentialHistogramDataPoint count */

@@ -142,0 +142,0 @@ count?: number;

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

import { hrTimeToNanoseconds } from '@opentelemetry/core';
import { hrTimeToFixed64Nanos } from '../common';
import { toAttributes } from '../common/internal';

@@ -21,4 +21,4 @@ import * as core from '@opentelemetry/core';

kind: span.kind == null ? 0 : span.kind + 1,
startTimeUnixNano: hrTimeToNanoseconds(span.startTime),
endTimeUnixNano: hrTimeToNanoseconds(span.endTime),
startTimeUnixNano: hrTimeToFixed64Nanos(span.startTime),
endTimeUnixNano: hrTimeToFixed64Nanos(span.endTime),
attributes: toAttributes(span.attributes),

@@ -57,3 +57,3 @@ droppedAttributesCount: span.droppedAttributesCount,

name: timedEvent.name,
timeUnixNano: hrTimeToNanoseconds(timedEvent.time),
timeUnixNano: hrTimeToFixed64Nanos(timedEvent.time),
droppedAttributesCount: timedEvent.droppedAttributesCount || 0,

@@ -60,0 +60,0 @@ };

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

import { IInstrumentationScope, IKeyValue } from '../common/types';
import { IFixed64, IInstrumentationScope, IKeyValue } from '../common/types';
import { IResource } from '../resource/types';

@@ -51,5 +51,5 @@ /** Properties of an ExportTraceServiceRequest. */

/** Span startTimeUnixNano */
startTimeUnixNano: number;
startTimeUnixNano: IFixed64;
/** Span endTimeUnixNano */
endTimeUnixNano: number;
endTimeUnixNano: IFixed64;
/** Span attributes */

@@ -119,3 +119,3 @@ attributes: IKeyValue[];

/** Event timeUnixNano */
timeUnixNano: number;
timeUnixNano: IFixed64;
/** Event name */

@@ -122,0 +122,0 @@ name: string;

@@ -46,2 +46,6 @@ /** Properties of an InstrumentationScope. */

}
export interface IFixed64 {
low: number;
high: number;
}
//# sourceMappingURL=types.d.ts.map
export * from './common/types';
export * from './common';
export * from './metrics/types';

@@ -3,0 +4,0 @@ export * from './resource/types';

@@ -17,2 +17,3 @@ /*

export * from './common/types';
export * from './common';
export * from './metrics/types';

@@ -19,0 +20,0 @@ export * from './resource/types';

@@ -16,4 +16,5 @@ /*

*/
import { hrTimeToFixed64Nanos } from '../common';
import { toAnyValue, toAttributes, toKeyValue } from '../common/internal';
import { hexToBase64, hrTimeToNanoseconds } from '@opentelemetry/core';
import { hexToBase64 } from '@opentelemetry/core';
export function createExportLogsServiceRequest(logRecords, useHex) {

@@ -64,4 +65,4 @@ return {

return {
timeUnixNano: hrTimeToNanoseconds(log.hrTime),
observedTimeUnixNano: hrTimeToNanoseconds(log.hrTimeObserved),
timeUnixNano: hrTimeToFixed64Nanos(log.hrTime),
observedTimeUnixNano: hrTimeToFixed64Nanos(log.hrTimeObserved),
severityNumber: toSeverityNumber(log.severityNumber),

@@ -68,0 +69,0 @@ severityText: log.severityText,

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

import type { IAnyValue, IInstrumentationScope, IKeyValue } from '../common/types';
import type { IAnyValue, IFixed64, IInstrumentationScope, IKeyValue } from '../common/types';
import type { IResource } from '../resource/types';

@@ -39,5 +39,5 @@ /** Properties of an ExportLogsServiceRequest. */

/** LogRecord timeUnixNano */
timeUnixNano: number;
timeUnixNano: IFixed64;
/** LogRecord observedTimeUnixNano */
observedTimeUnixNano: number;
observedTimeUnixNano: IFixed64;
/** LogRecord severityNumber */

@@ -44,0 +44,0 @@ severityNumber?: ESeverityNumber;

@@ -17,4 +17,4 @@ /*

import { ValueType } from '@opentelemetry/api';
import { hrTimeToNanoseconds } from '@opentelemetry/core';
import { AggregationTemporality, DataPointType, } from '@opentelemetry/sdk-metrics';
import { hrTimeToFixed64Nanos } from '../common';
import { toAttributes } from '../common/internal';

@@ -79,4 +79,4 @@ export function toResourceMetrics(resourceMetrics) {

attributes: toAttributes(dataPoint.attributes),
startTimeUnixNano: hrTimeToNanoseconds(dataPoint.startTime),
timeUnixNano: hrTimeToNanoseconds(dataPoint.endTime),
startTimeUnixNano: hrTimeToFixed64Nanos(dataPoint.startTime),
timeUnixNano: hrTimeToFixed64Nanos(dataPoint.endTime),
};

@@ -109,4 +109,4 @@ switch (valueType) {

max: histogram.max,
startTimeUnixNano: hrTimeToNanoseconds(dataPoint.startTime),
timeUnixNano: hrTimeToNanoseconds(dataPoint.endTime),
startTimeUnixNano: hrTimeToFixed64Nanos(dataPoint.startTime),
timeUnixNano: hrTimeToFixed64Nanos(dataPoint.endTime),
};

@@ -134,4 +134,4 @@ });

zeroCount: histogram.zeroCount,
startTimeUnixNano: hrTimeToNanoseconds(dataPoint.startTime),
timeUnixNano: hrTimeToNanoseconds(dataPoint.endTime),
startTimeUnixNano: hrTimeToFixed64Nanos(dataPoint.startTime),
timeUnixNano: hrTimeToFixed64Nanos(dataPoint.endTime),
};

@@ -138,0 +138,0 @@ });

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

import { IInstrumentationScope, IKeyValue } from '../common/types';
import { IFixed64, IInstrumentationScope, IKeyValue } from '../common/types';
import { IResource } from '../resource/types';

@@ -93,5 +93,5 @@ /** Properties of an ExportMetricsServiceRequest. */

/** NumberDataPoint startTimeUnixNano */
startTimeUnixNano?: number;
startTimeUnixNano?: IFixed64 | string;
/** NumberDataPoint timeUnixNano */
timeUnixNano?: number;
timeUnixNano?: IFixed64 | string;
/** NumberDataPoint asDouble */

@@ -111,5 +111,5 @@ asDouble?: number | null;

/** HistogramDataPoint startTimeUnixNano */
startTimeUnixNano?: number;
startTimeUnixNano?: IFixed64 | string;
/** HistogramDataPoint timeUnixNano */
timeUnixNano?: number;
timeUnixNano?: IFixed64 | string;
/** HistogramDataPoint count */

@@ -137,5 +137,5 @@ count?: number;

/** ExponentialHistogramDataPoint startTimeUnixNano */
startTimeUnixNano?: number;
startTimeUnixNano?: IFixed64 | string;
/** ExponentialHistogramDataPoint timeUnixNano */
timeUnixNano?: number;
timeUnixNano?: IFixed64 | string;
/** ExponentialHistogramDataPoint count */

@@ -142,0 +142,0 @@ count?: number;

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

import { hrTimeToNanoseconds } from '@opentelemetry/core';
import { hrTimeToFixed64Nanos } from '../common';
import { toAttributes } from '../common/internal';

@@ -21,4 +21,4 @@ import * as core from '@opentelemetry/core';

kind: span.kind == null ? 0 : span.kind + 1,
startTimeUnixNano: hrTimeToNanoseconds(span.startTime),
endTimeUnixNano: hrTimeToNanoseconds(span.endTime),
startTimeUnixNano: hrTimeToFixed64Nanos(span.startTime),
endTimeUnixNano: hrTimeToFixed64Nanos(span.endTime),
attributes: toAttributes(span.attributes),

@@ -57,3 +57,3 @@ droppedAttributesCount: span.droppedAttributesCount,

name: timedEvent.name,
timeUnixNano: hrTimeToNanoseconds(timedEvent.time),
timeUnixNano: hrTimeToFixed64Nanos(timedEvent.time),
droppedAttributesCount: timedEvent.droppedAttributesCount || 0,

@@ -60,0 +60,0 @@ };

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

import { IInstrumentationScope, IKeyValue } from '../common/types';
import { IFixed64, IInstrumentationScope, IKeyValue } from '../common/types';
import { IResource } from '../resource/types';

@@ -51,5 +51,5 @@ /** Properties of an ExportTraceServiceRequest. */

/** Span startTimeUnixNano */
startTimeUnixNano: number;
startTimeUnixNano: IFixed64;
/** Span endTimeUnixNano */
endTimeUnixNano: number;
endTimeUnixNano: IFixed64;
/** Span attributes */

@@ -119,3 +119,3 @@ attributes: IKeyValue[];

/** Event timeUnixNano */
timeUnixNano: number;
timeUnixNano: IFixed64;
/** Event name */

@@ -122,0 +122,0 @@ name: string;

@@ -46,2 +46,6 @@ /** Properties of an InstrumentationScope. */

}
export interface IFixed64 {
low: number;
high: number;
}
//# sourceMappingURL=types.d.ts.map
export * from './common/types';
export * from './common';
export * from './metrics/types';

@@ -3,0 +4,0 @@ export * from './resource/types';

@@ -30,2 +30,3 @@ "use strict";

__exportStar(require("./common/types"), exports);
__exportStar(require("./common"), exports);
__exportStar(require("./metrics/types"), exports);

@@ -32,0 +33,0 @@ __exportStar(require("./resource/types"), exports);

@@ -19,2 +19,3 @@ "use strict";

exports.toLogAttributes = exports.createExportLogsServiceRequest = void 0;
const common_1 = require("../common");
const internal_1 = require("../common/internal");

@@ -68,4 +69,4 @@ const core_1 = require("@opentelemetry/core");

return {
timeUnixNano: (0, core_1.hrTimeToNanoseconds)(log.hrTime),
observedTimeUnixNano: (0, core_1.hrTimeToNanoseconds)(log.hrTimeObserved),
timeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(log.hrTime),
observedTimeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(log.hrTimeObserved),
severityNumber: toSeverityNumber(log.severityNumber),

@@ -72,0 +73,0 @@ severityText: log.severityText,

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

import type { IAnyValue, IInstrumentationScope, IKeyValue } from '../common/types';
import type { IAnyValue, IFixed64, IInstrumentationScope, IKeyValue } from '../common/types';
import type { IResource } from '../resource/types';

@@ -39,5 +39,5 @@ /** Properties of an ExportLogsServiceRequest. */

/** LogRecord timeUnixNano */
timeUnixNano: number;
timeUnixNano: IFixed64;
/** LogRecord observedTimeUnixNano */
observedTimeUnixNano: number;
observedTimeUnixNano: IFixed64;
/** LogRecord severityNumber */

@@ -44,0 +44,0 @@ severityNumber?: ESeverityNumber;

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

const api_1 = require("@opentelemetry/api");
const core_1 = require("@opentelemetry/core");
const sdk_metrics_1 = require("@opentelemetry/sdk-metrics");
const common_1 = require("../common");
const internal_1 = require("../common/internal");

@@ -85,4 +85,4 @@ function toResourceMetrics(resourceMetrics) {

attributes: (0, internal_1.toAttributes)(dataPoint.attributes),
startTimeUnixNano: (0, core_1.hrTimeToNanoseconds)(dataPoint.startTime),
timeUnixNano: (0, core_1.hrTimeToNanoseconds)(dataPoint.endTime),
startTimeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(dataPoint.startTime),
timeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(dataPoint.endTime),
};

@@ -115,4 +115,4 @@ switch (valueType) {

max: histogram.max,
startTimeUnixNano: (0, core_1.hrTimeToNanoseconds)(dataPoint.startTime),
timeUnixNano: (0, core_1.hrTimeToNanoseconds)(dataPoint.endTime),
startTimeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(dataPoint.startTime),
timeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(dataPoint.endTime),
};

@@ -140,4 +140,4 @@ });

zeroCount: histogram.zeroCount,
startTimeUnixNano: (0, core_1.hrTimeToNanoseconds)(dataPoint.startTime),
timeUnixNano: (0, core_1.hrTimeToNanoseconds)(dataPoint.endTime),
startTimeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(dataPoint.startTime),
timeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(dataPoint.endTime),
};

@@ -144,0 +144,0 @@ });

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

import { IInstrumentationScope, IKeyValue } from '../common/types';
import { IFixed64, IInstrumentationScope, IKeyValue } from '../common/types';
import { IResource } from '../resource/types';

@@ -93,5 +93,5 @@ /** Properties of an ExportMetricsServiceRequest. */

/** NumberDataPoint startTimeUnixNano */
startTimeUnixNano?: number;
startTimeUnixNano?: IFixed64 | string;
/** NumberDataPoint timeUnixNano */
timeUnixNano?: number;
timeUnixNano?: IFixed64 | string;
/** NumberDataPoint asDouble */

@@ -111,5 +111,5 @@ asDouble?: number | null;

/** HistogramDataPoint startTimeUnixNano */
startTimeUnixNano?: number;
startTimeUnixNano?: IFixed64 | string;
/** HistogramDataPoint timeUnixNano */
timeUnixNano?: number;
timeUnixNano?: IFixed64 | string;
/** HistogramDataPoint count */

@@ -137,5 +137,5 @@ count?: number;

/** ExponentialHistogramDataPoint startTimeUnixNano */
startTimeUnixNano?: number;
startTimeUnixNano?: IFixed64 | string;
/** ExponentialHistogramDataPoint timeUnixNano */
timeUnixNano?: number;
timeUnixNano?: IFixed64 | string;
/** ExponentialHistogramDataPoint count */

@@ -142,0 +142,0 @@ count?: number;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.toOtlpSpanEvent = exports.toOtlpLink = exports.sdkSpanToOtlpSpan = void 0;
const core_1 = require("@opentelemetry/core");
const common_1 = require("../common");
const internal_1 = require("../common/internal");

@@ -24,4 +24,4 @@ const core = require("@opentelemetry/core");

kind: span.kind == null ? 0 : span.kind + 1,
startTimeUnixNano: (0, core_1.hrTimeToNanoseconds)(span.startTime),
endTimeUnixNano: (0, core_1.hrTimeToNanoseconds)(span.endTime),
startTimeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(span.startTime),
endTimeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(span.endTime),
attributes: (0, internal_1.toAttributes)(span.attributes),

@@ -62,3 +62,3 @@ droppedAttributesCount: span.droppedAttributesCount,

name: timedEvent.name,
timeUnixNano: (0, core_1.hrTimeToNanoseconds)(timedEvent.time),
timeUnixNano: (0, common_1.hrTimeToFixed64Nanos)(timedEvent.time),
droppedAttributesCount: timedEvent.droppedAttributesCount || 0,

@@ -65,0 +65,0 @@ };

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

import { IInstrumentationScope, IKeyValue } from '../common/types';
import { IFixed64, IInstrumentationScope, IKeyValue } from '../common/types';
import { IResource } from '../resource/types';

@@ -51,5 +51,5 @@ /** Properties of an ExportTraceServiceRequest. */

/** Span startTimeUnixNano */
startTimeUnixNano: number;
startTimeUnixNano: IFixed64;
/** Span endTimeUnixNano */
endTimeUnixNano: number;
endTimeUnixNano: IFixed64;
/** Span attributes */

@@ -119,3 +119,3 @@ attributes: IKeyValue[];

/** Event timeUnixNano */
timeUnixNano: number;
timeUnixNano: IFixed64;
/** Event name */

@@ -122,0 +122,0 @@ name: string;

@@ -7,3 +7,3 @@ {

},
"version": "0.43.0",
"version": "0.44.0",
"description": "Transform OpenTelemetry SDK data into OTLP",

@@ -62,3 +62,3 @@ "module": "build/esm/index.js",

"@opentelemetry/api": "1.6.0",
"@types/mocha": "10.0.1",
"@types/mocha": "10.0.2",
"@types/webpack-env": "1.16.3",

@@ -83,12 +83,12 @@ "babel-plugin-istanbul": "6.1.1",

"dependencies": {
"@opentelemetry/api-logs": "0.43.0",
"@opentelemetry/core": "1.17.0",
"@opentelemetry/resources": "1.17.0",
"@opentelemetry/sdk-logs": "0.43.0",
"@opentelemetry/sdk-metrics": "1.17.0",
"@opentelemetry/sdk-trace-base": "1.17.0"
"@opentelemetry/api-logs": "0.44.0",
"@opentelemetry/core": "1.17.1",
"@opentelemetry/resources": "1.17.1",
"@opentelemetry/sdk-logs": "0.44.0",
"@opentelemetry/sdk-metrics": "1.17.1",
"@opentelemetry/sdk-trace-base": "1.17.1"
},
"homepage": "https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/otlp-transformer",
"sideEffects": false,
"gitHead": "faf939c77591f709afbc23fadbe629c9d3607ef6"
"gitHead": "f8e187b473274cc2011e7385992f07d319d667dc"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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