Socket
Socket
Sign inDemoInstall

@opentelemetry/semantic-conventions

Package Overview
Dependencies
Maintainers
4
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opentelemetry/semantic-conventions - npm Package Compare versions

Comparing version 0.25.1-alpha.21 to 0.26.0

10

build/esm/resource/SemanticResourceAttributes.d.ts

@@ -11,3 +11,3 @@ export declare const SemanticResourceAttributes: {

/**
* The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations).
* The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [Alibaba Cloud regions](https://www.alibabacloud.com/help/doc-detail/40654.htm), [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations).
*/

@@ -18,3 +18,3 @@ CLOUD_REGION: string;

*
* Note: Availability zones are called "zones" on Google Cloud.
* Note: Availability zones are called "zones" on Alibaba Cloud and Google Cloud.
*/

@@ -383,2 +383,4 @@ CLOUD_AVAILABILITY_ZONE: string;

export declare enum CloudProviderValues {
/** Alibaba Cloud. */
ALIBABA_CLOUD = "alibaba_cloud",
/** Amazon Web Services. */

@@ -392,2 +394,6 @@ AWS = "aws",

export declare enum CloudPlatformValues {
/** Alibaba Cloud Elastic Compute Service. */
ALIBABA_CLOUD_ECS = "alibaba_cloud_ecs",
/** Alibaba Cloud Function Compute. */
ALIBABA_CLOUD_FC = "alibaba_cloud_fc",
/** AWS Elastic Compute Cloud. */

@@ -394,0 +400,0 @@ AWS_EC2 = "aws_ec2",

@@ -27,3 +27,3 @@ /*

/**
* The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations).
* The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [Alibaba Cloud regions](https://www.alibabacloud.com/help/doc-detail/40654.htm), [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations).
*/

@@ -34,3 +34,3 @@ CLOUD_REGION: 'cloud.region',

*
* Note: Availability zones are called "zones" on Google Cloud.
* Note: Availability zones are called "zones" on Alibaba Cloud and Google Cloud.
*/

@@ -401,2 +401,4 @@ CLOUD_AVAILABILITY_ZONE: 'cloud.availability_zone',

(function (CloudProviderValues) {
/** Alibaba Cloud. */
CloudProviderValues["ALIBABA_CLOUD"] = "alibaba_cloud";
/** Amazon Web Services. */

@@ -411,2 +413,6 @@ CloudProviderValues["AWS"] = "aws";

(function (CloudPlatformValues) {
/** Alibaba Cloud Elastic Compute Service. */
CloudPlatformValues["ALIBABA_CLOUD_ECS"] = "alibaba_cloud_ecs";
/** Alibaba Cloud Function Compute. */
CloudPlatformValues["ALIBABA_CLOUD_FC"] = "alibaba_cloud_fc";
/** AWS Elastic Compute Cloud. */

@@ -413,0 +419,0 @@ CloudPlatformValues["AWS_EC2"] = "aws_ec2";

@@ -216,2 +216,26 @@ export declare const SemanticAttributes: {

/**
* The internet connection type currently being used by the host.
*/
NET_HOST_CONNECTION_TYPE: string;
/**
* This describes more details regarding the connection.type. It may be the type of cell technology connection, but it could be used for describing details about a wifi connection.
*/
NET_HOST_CONNECTION_SUBTYPE: string;
/**
* The name of the mobile carrier.
*/
NET_HOST_CARRIER_NAME: string;
/**
* The mobile carrier country code.
*/
NET_HOST_CARRIER_MCC: string;
/**
* The mobile carrier network code.
*/
NET_HOST_CARRIER_MNC: string;
/**
* The ISO 3166-1 alpha-2 2-character country code associated with the mobile carrier network.
*/
NET_HOST_CARRIER_ICC: string;
/**
* The [`service.name`](../../resource/semantic_conventions/README.md#service) of the remote service. SHOULD be equal to the actual `service.name` resource attribute of the remote service if any.

@@ -664,2 +688,4 @@ */

export declare enum FaasInvokedProviderValues {
/** Alibaba Cloud. */
ALIBABA_CLOUD = "alibaba_cloud",
/** Amazon Web Services. */

@@ -688,2 +714,58 @@ AWS = "aws",

}
export declare enum NetHostConnectionTypeValues {
/** wifi. */
WIFI = "wifi",
/** wired. */
WIRED = "wired",
/** cell. */
CELL = "cell",
/** unavailable. */
UNAVAILABLE = "unavailable",
/** unknown. */
UNKNOWN = "unknown"
}
export declare enum NetHostConnectionSubtypeValues {
/** GPRS. */
GPRS = "gprs",
/** EDGE. */
EDGE = "edge",
/** UMTS. */
UMTS = "umts",
/** CDMA. */
CDMA = "cdma",
/** EVDO Rel. 0. */
EVDO_0 = "evdo_0",
/** EVDO Rev. A. */
EVDO_A = "evdo_a",
/** CDMA2000 1XRTT. */
CDMA2000_1XRTT = "cdma2000_1xrtt",
/** HSDPA. */
HSDPA = "hsdpa",
/** HSUPA. */
HSUPA = "hsupa",
/** HSPA. */
HSPA = "hspa",
/** IDEN. */
IDEN = "iden",
/** EVDO Rev. B. */
EVDO_B = "evdo_b",
/** LTE. */
LTE = "lte",
/** EHRPD. */
EHRPD = "ehrpd",
/** HSPAP. */
HSPAP = "hspap",
/** GSM. */
GSM = "gsm",
/** TD-SCDMA. */
TD_SCDMA = "td_scdma",
/** IWLAN. */
IWLAN = "iwlan",
/** 5G NR (New Radio). */
NR = "nr",
/** 5G NRNSA (New Radio Non-Standalone). */
NRNSA = "nrnsa",
/** LTE CA. */
LTE_CA = "lte_ca"
}
export declare enum HttpFlavorValues {

@@ -690,0 +772,0 @@ /** HTTP 1.0. */

@@ -232,2 +232,26 @@ /*

/**
* The internet connection type currently being used by the host.
*/
NET_HOST_CONNECTION_TYPE: 'net.host.connection.type',
/**
* This describes more details regarding the connection.type. It may be the type of cell technology connection, but it could be used for describing details about a wifi connection.
*/
NET_HOST_CONNECTION_SUBTYPE: 'net.host.connection.subtype',
/**
* The name of the mobile carrier.
*/
NET_HOST_CARRIER_NAME: 'net.host.carrier.name',
/**
* The mobile carrier country code.
*/
NET_HOST_CARRIER_MCC: 'net.host.carrier.mcc',
/**
* The mobile carrier network code.
*/
NET_HOST_CARRIER_MNC: 'net.host.carrier.mnc',
/**
* The ISO 3166-1 alpha-2 2-character country code associated with the mobile carrier network.
*/
NET_HOST_CARRIER_ICC: 'net.host.carrier.icc',
/**
* The [`service.name`](../../resource/semantic_conventions/README.md#service) of the remote service. SHOULD be equal to the actual `service.name` resource attribute of the remote service if any.

@@ -686,2 +710,4 @@ */

(function (FaasInvokedProviderValues) {
/** Alibaba Cloud. */
FaasInvokedProviderValues["ALIBABA_CLOUD"] = "alibaba_cloud";
/** Amazon Web Services. */

@@ -711,2 +737,60 @@ FaasInvokedProviderValues["AWS"] = "aws";

})(NetTransportValues || (NetTransportValues = {}));
export var NetHostConnectionTypeValues;
(function (NetHostConnectionTypeValues) {
/** wifi. */
NetHostConnectionTypeValues["WIFI"] = "wifi";
/** wired. */
NetHostConnectionTypeValues["WIRED"] = "wired";
/** cell. */
NetHostConnectionTypeValues["CELL"] = "cell";
/** unavailable. */
NetHostConnectionTypeValues["UNAVAILABLE"] = "unavailable";
/** unknown. */
NetHostConnectionTypeValues["UNKNOWN"] = "unknown";
})(NetHostConnectionTypeValues || (NetHostConnectionTypeValues = {}));
export var NetHostConnectionSubtypeValues;
(function (NetHostConnectionSubtypeValues) {
/** GPRS. */
NetHostConnectionSubtypeValues["GPRS"] = "gprs";
/** EDGE. */
NetHostConnectionSubtypeValues["EDGE"] = "edge";
/** UMTS. */
NetHostConnectionSubtypeValues["UMTS"] = "umts";
/** CDMA. */
NetHostConnectionSubtypeValues["CDMA"] = "cdma";
/** EVDO Rel. 0. */
NetHostConnectionSubtypeValues["EVDO_0"] = "evdo_0";
/** EVDO Rev. A. */
NetHostConnectionSubtypeValues["EVDO_A"] = "evdo_a";
/** CDMA2000 1XRTT. */
NetHostConnectionSubtypeValues["CDMA2000_1XRTT"] = "cdma2000_1xrtt";
/** HSDPA. */
NetHostConnectionSubtypeValues["HSDPA"] = "hsdpa";
/** HSUPA. */
NetHostConnectionSubtypeValues["HSUPA"] = "hsupa";
/** HSPA. */
NetHostConnectionSubtypeValues["HSPA"] = "hspa";
/** IDEN. */
NetHostConnectionSubtypeValues["IDEN"] = "iden";
/** EVDO Rev. B. */
NetHostConnectionSubtypeValues["EVDO_B"] = "evdo_b";
/** LTE. */
NetHostConnectionSubtypeValues["LTE"] = "lte";
/** EHRPD. */
NetHostConnectionSubtypeValues["EHRPD"] = "ehrpd";
/** HSPAP. */
NetHostConnectionSubtypeValues["HSPAP"] = "hspap";
/** GSM. */
NetHostConnectionSubtypeValues["GSM"] = "gsm";
/** TD-SCDMA. */
NetHostConnectionSubtypeValues["TD_SCDMA"] = "td_scdma";
/** IWLAN. */
NetHostConnectionSubtypeValues["IWLAN"] = "iwlan";
/** 5G NR (New Radio). */
NetHostConnectionSubtypeValues["NR"] = "nr";
/** 5G NRNSA (New Radio Non-Standalone). */
NetHostConnectionSubtypeValues["NRNSA"] = "nrnsa";
/** LTE CA. */
NetHostConnectionSubtypeValues["LTE_CA"] = "lte_ca";
})(NetHostConnectionSubtypeValues || (NetHostConnectionSubtypeValues = {}));
export var HttpFlavorValues;

@@ -713,0 +797,0 @@ (function (HttpFlavorValues) {

2

build/esm/version.d.ts

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

export declare const VERSION = "0.25.0";
export declare const VERSION = "0.26.0";
//# sourceMappingURL=version.d.ts.map

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

// this is autogenerated file, see scripts/version-update.js
export var VERSION = '0.25.0';
export var VERSION = '0.26.0';
//# sourceMappingURL=version.js.map

@@ -11,3 +11,3 @@ export declare const SemanticResourceAttributes: {

/**
* The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations).
* The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [Alibaba Cloud regions](https://www.alibabacloud.com/help/doc-detail/40654.htm), [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations).
*/

@@ -18,3 +18,3 @@ CLOUD_REGION: string;

*
* Note: Availability zones are called "zones" on Google Cloud.
* Note: Availability zones are called "zones" on Alibaba Cloud and Google Cloud.
*/

@@ -383,2 +383,4 @@ CLOUD_AVAILABILITY_ZONE: string;

export declare enum CloudProviderValues {
/** Alibaba Cloud. */
ALIBABA_CLOUD = "alibaba_cloud",
/** Amazon Web Services. */

@@ -392,2 +394,6 @@ AWS = "aws",

export declare enum CloudPlatformValues {
/** Alibaba Cloud Elastic Compute Service. */
ALIBABA_CLOUD_ECS = "alibaba_cloud_ecs",
/** Alibaba Cloud Function Compute. */
ALIBABA_CLOUD_FC = "alibaba_cloud_fc",
/** AWS Elastic Compute Cloud. */

@@ -394,0 +400,0 @@ AWS_EC2 = "aws_ec2",

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

/**
* The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations).
* The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [Alibaba Cloud regions](https://www.alibabacloud.com/help/doc-detail/40654.htm), [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations).
*/

@@ -37,3 +37,3 @@ CLOUD_REGION: 'cloud.region',

*
* Note: Availability zones are called "zones" on Google Cloud.
* Note: Availability zones are called "zones" on Alibaba Cloud and Google Cloud.
*/

@@ -404,2 +404,4 @@ CLOUD_AVAILABILITY_ZONE: 'cloud.availability_zone',

(function (CloudProviderValues) {
/** Alibaba Cloud. */
CloudProviderValues["ALIBABA_CLOUD"] = "alibaba_cloud";
/** Amazon Web Services. */

@@ -414,2 +416,6 @@ CloudProviderValues["AWS"] = "aws";

(function (CloudPlatformValues) {
/** Alibaba Cloud Elastic Compute Service. */
CloudPlatformValues["ALIBABA_CLOUD_ECS"] = "alibaba_cloud_ecs";
/** Alibaba Cloud Function Compute. */
CloudPlatformValues["ALIBABA_CLOUD_FC"] = "alibaba_cloud_fc";
/** AWS Elastic Compute Cloud. */

@@ -416,0 +422,0 @@ CloudPlatformValues["AWS_EC2"] = "aws_ec2";

@@ -216,2 +216,26 @@ export declare const SemanticAttributes: {

/**
* The internet connection type currently being used by the host.
*/
NET_HOST_CONNECTION_TYPE: string;
/**
* This describes more details regarding the connection.type. It may be the type of cell technology connection, but it could be used for describing details about a wifi connection.
*/
NET_HOST_CONNECTION_SUBTYPE: string;
/**
* The name of the mobile carrier.
*/
NET_HOST_CARRIER_NAME: string;
/**
* The mobile carrier country code.
*/
NET_HOST_CARRIER_MCC: string;
/**
* The mobile carrier network code.
*/
NET_HOST_CARRIER_MNC: string;
/**
* The ISO 3166-1 alpha-2 2-character country code associated with the mobile carrier network.
*/
NET_HOST_CARRIER_ICC: string;
/**
* The [`service.name`](../../resource/semantic_conventions/README.md#service) of the remote service. SHOULD be equal to the actual `service.name` resource attribute of the remote service if any.

@@ -664,2 +688,4 @@ */

export declare enum FaasInvokedProviderValues {
/** Alibaba Cloud. */
ALIBABA_CLOUD = "alibaba_cloud",
/** Amazon Web Services. */

@@ -688,2 +714,58 @@ AWS = "aws",

}
export declare enum NetHostConnectionTypeValues {
/** wifi. */
WIFI = "wifi",
/** wired. */
WIRED = "wired",
/** cell. */
CELL = "cell",
/** unavailable. */
UNAVAILABLE = "unavailable",
/** unknown. */
UNKNOWN = "unknown"
}
export declare enum NetHostConnectionSubtypeValues {
/** GPRS. */
GPRS = "gprs",
/** EDGE. */
EDGE = "edge",
/** UMTS. */
UMTS = "umts",
/** CDMA. */
CDMA = "cdma",
/** EVDO Rel. 0. */
EVDO_0 = "evdo_0",
/** EVDO Rev. A. */
EVDO_A = "evdo_a",
/** CDMA2000 1XRTT. */
CDMA2000_1XRTT = "cdma2000_1xrtt",
/** HSDPA. */
HSDPA = "hsdpa",
/** HSUPA. */
HSUPA = "hsupa",
/** HSPA. */
HSPA = "hspa",
/** IDEN. */
IDEN = "iden",
/** EVDO Rev. B. */
EVDO_B = "evdo_b",
/** LTE. */
LTE = "lte",
/** EHRPD. */
EHRPD = "ehrpd",
/** HSPAP. */
HSPAP = "hspap",
/** GSM. */
GSM = "gsm",
/** TD-SCDMA. */
TD_SCDMA = "td_scdma",
/** IWLAN. */
IWLAN = "iwlan",
/** 5G NR (New Radio). */
NR = "nr",
/** 5G NRNSA (New Radio Non-Standalone). */
NRNSA = "nrnsa",
/** LTE CA. */
LTE_CA = "lte_ca"
}
export declare enum HttpFlavorValues {

@@ -690,0 +772,0 @@ /** HTTP 1.0. */

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

Object.defineProperty(exports, "__esModule", { value: true });
exports.RpcGrpcStatusCodeValues = exports.MessagingOperationValues = exports.MessagingDestinationKindValues = exports.HttpFlavorValues = exports.NetTransportValues = exports.FaasInvokedProviderValues = exports.FaasDocumentOperationValues = exports.FaasTriggerValues = exports.DbCassandraConsistencyLevelValues = exports.DbSystemValues = exports.SemanticAttributes = void 0;
exports.RpcGrpcStatusCodeValues = exports.MessagingOperationValues = exports.MessagingDestinationKindValues = exports.HttpFlavorValues = exports.NetHostConnectionSubtypeValues = exports.NetHostConnectionTypeValues = exports.NetTransportValues = exports.FaasInvokedProviderValues = exports.FaasDocumentOperationValues = exports.FaasTriggerValues = exports.DbCassandraConsistencyLevelValues = exports.DbSystemValues = exports.SemanticAttributes = void 0;
// DO NOT EDIT, this is an Auto-generated file from scripts/semconv/templates//templates/SemanticAttributes.ts.j2

@@ -236,2 +236,26 @@ exports.SemanticAttributes = {

/**
* The internet connection type currently being used by the host.
*/
NET_HOST_CONNECTION_TYPE: 'net.host.connection.type',
/**
* This describes more details regarding the connection.type. It may be the type of cell technology connection, but it could be used for describing details about a wifi connection.
*/
NET_HOST_CONNECTION_SUBTYPE: 'net.host.connection.subtype',
/**
* The name of the mobile carrier.
*/
NET_HOST_CARRIER_NAME: 'net.host.carrier.name',
/**
* The mobile carrier country code.
*/
NET_HOST_CARRIER_MCC: 'net.host.carrier.mcc',
/**
* The mobile carrier network code.
*/
NET_HOST_CARRIER_MNC: 'net.host.carrier.mnc',
/**
* The ISO 3166-1 alpha-2 2-character country code associated with the mobile carrier network.
*/
NET_HOST_CARRIER_ICC: 'net.host.carrier.icc',
/**
* The [`service.name`](../../resource/semantic_conventions/README.md#service) of the remote service. SHOULD be equal to the actual `service.name` resource attribute of the remote service if any.

@@ -690,2 +714,4 @@ */

(function (FaasInvokedProviderValues) {
/** Alibaba Cloud. */
FaasInvokedProviderValues["ALIBABA_CLOUD"] = "alibaba_cloud";
/** Amazon Web Services. */

@@ -715,2 +741,60 @@ FaasInvokedProviderValues["AWS"] = "aws";

})(NetTransportValues = exports.NetTransportValues || (exports.NetTransportValues = {}));
var NetHostConnectionTypeValues;
(function (NetHostConnectionTypeValues) {
/** wifi. */
NetHostConnectionTypeValues["WIFI"] = "wifi";
/** wired. */
NetHostConnectionTypeValues["WIRED"] = "wired";
/** cell. */
NetHostConnectionTypeValues["CELL"] = "cell";
/** unavailable. */
NetHostConnectionTypeValues["UNAVAILABLE"] = "unavailable";
/** unknown. */
NetHostConnectionTypeValues["UNKNOWN"] = "unknown";
})(NetHostConnectionTypeValues = exports.NetHostConnectionTypeValues || (exports.NetHostConnectionTypeValues = {}));
var NetHostConnectionSubtypeValues;
(function (NetHostConnectionSubtypeValues) {
/** GPRS. */
NetHostConnectionSubtypeValues["GPRS"] = "gprs";
/** EDGE. */
NetHostConnectionSubtypeValues["EDGE"] = "edge";
/** UMTS. */
NetHostConnectionSubtypeValues["UMTS"] = "umts";
/** CDMA. */
NetHostConnectionSubtypeValues["CDMA"] = "cdma";
/** EVDO Rel. 0. */
NetHostConnectionSubtypeValues["EVDO_0"] = "evdo_0";
/** EVDO Rev. A. */
NetHostConnectionSubtypeValues["EVDO_A"] = "evdo_a";
/** CDMA2000 1XRTT. */
NetHostConnectionSubtypeValues["CDMA2000_1XRTT"] = "cdma2000_1xrtt";
/** HSDPA. */
NetHostConnectionSubtypeValues["HSDPA"] = "hsdpa";
/** HSUPA. */
NetHostConnectionSubtypeValues["HSUPA"] = "hsupa";
/** HSPA. */
NetHostConnectionSubtypeValues["HSPA"] = "hspa";
/** IDEN. */
NetHostConnectionSubtypeValues["IDEN"] = "iden";
/** EVDO Rev. B. */
NetHostConnectionSubtypeValues["EVDO_B"] = "evdo_b";
/** LTE. */
NetHostConnectionSubtypeValues["LTE"] = "lte";
/** EHRPD. */
NetHostConnectionSubtypeValues["EHRPD"] = "ehrpd";
/** HSPAP. */
NetHostConnectionSubtypeValues["HSPAP"] = "hspap";
/** GSM. */
NetHostConnectionSubtypeValues["GSM"] = "gsm";
/** TD-SCDMA. */
NetHostConnectionSubtypeValues["TD_SCDMA"] = "td_scdma";
/** IWLAN. */
NetHostConnectionSubtypeValues["IWLAN"] = "iwlan";
/** 5G NR (New Radio). */
NetHostConnectionSubtypeValues["NR"] = "nr";
/** 5G NRNSA (New Radio Non-Standalone). */
NetHostConnectionSubtypeValues["NRNSA"] = "nrnsa";
/** LTE CA. */
NetHostConnectionSubtypeValues["LTE_CA"] = "lte_ca";
})(NetHostConnectionSubtypeValues = exports.NetHostConnectionSubtypeValues || (exports.NetHostConnectionSubtypeValues = {}));
var HttpFlavorValues;

@@ -717,0 +801,0 @@ (function (HttpFlavorValues) {

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

export declare const VERSION = "0.25.0";
export declare const VERSION = "0.26.0";
//# sourceMappingURL=version.d.ts.map

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

// this is autogenerated file, see scripts/version-update.js
exports.VERSION = '0.25.0';
exports.VERSION = '0.26.0';
//# sourceMappingURL=version.js.map
{
"name": "@opentelemetry/semantic-conventions",
"version": "0.25.1-alpha.21+0ef1fc28",
"version": "0.26.0",
"description": "OpenTelemetry semantic conventions",

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

"version": "node ../../scripts/version-update.js",
"watch": "tsc --build --watch tsconfig.json tsconfig.esm.json"
"watch": "tsc --build --watch tsconfig.json tsconfig.esm.json",
"precompile": "lerna run version --scope $(npm pkg get name) --include-filtered-dependencies",
"prewatch": "npm run precompile"
},

@@ -48,3 +50,3 @@ "keywords": [

"@types/mocha": "8.2.3",
"@types/node": "14.17.9",
"@types/node": "14.17.11",
"@types/sinon": "10.0.2",

@@ -60,3 +62,3 @@ "codecov": "3.8.3",

},
"gitHead": "0ef1fc28d366b74d98b73b5d6334ffdc75342fe2"
"gitHead": "fa2e897587a2441205fd085772d80a0a225ee78e"
}

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