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 1.0.0 to 1.0.1

132

build/esm/resource/SemanticResourceAttributes.d.ts

@@ -380,116 +380,122 @@ export declare const SemanticResourceAttributes: {

};
export declare enum CloudProviderValues {
export declare const CloudProviderValues: {
/** Alibaba Cloud. */
ALIBABA_CLOUD = "alibaba_cloud",
readonly ALIBABA_CLOUD: "alibaba_cloud";
/** Amazon Web Services. */
AWS = "aws",
readonly AWS: "aws";
/** Microsoft Azure. */
AZURE = "azure",
readonly AZURE: "azure";
/** Google Cloud Platform. */
GCP = "gcp"
}
export declare enum CloudPlatformValues {
readonly GCP: "gcp";
};
export declare type CloudProviderValues = typeof CloudProviderValues[keyof typeof CloudProviderValues];
export declare const CloudPlatformValues: {
/** Alibaba Cloud Elastic Compute Service. */
ALIBABA_CLOUD_ECS = "alibaba_cloud_ecs",
readonly ALIBABA_CLOUD_ECS: "alibaba_cloud_ecs";
/** Alibaba Cloud Function Compute. */
ALIBABA_CLOUD_FC = "alibaba_cloud_fc",
readonly ALIBABA_CLOUD_FC: "alibaba_cloud_fc";
/** AWS Elastic Compute Cloud. */
AWS_EC2 = "aws_ec2",
readonly AWS_EC2: "aws_ec2";
/** AWS Elastic Container Service. */
AWS_ECS = "aws_ecs",
readonly AWS_ECS: "aws_ecs";
/** AWS Elastic Kubernetes Service. */
AWS_EKS = "aws_eks",
readonly AWS_EKS: "aws_eks";
/** AWS Lambda. */
AWS_LAMBDA = "aws_lambda",
readonly AWS_LAMBDA: "aws_lambda";
/** AWS Elastic Beanstalk. */
AWS_ELASTIC_BEANSTALK = "aws_elastic_beanstalk",
readonly AWS_ELASTIC_BEANSTALK: "aws_elastic_beanstalk";
/** Azure Virtual Machines. */
AZURE_VM = "azure_vm",
readonly AZURE_VM: "azure_vm";
/** Azure Container Instances. */
AZURE_CONTAINER_INSTANCES = "azure_container_instances",
readonly AZURE_CONTAINER_INSTANCES: "azure_container_instances";
/** Azure Kubernetes Service. */
AZURE_AKS = "azure_aks",
readonly AZURE_AKS: "azure_aks";
/** Azure Functions. */
AZURE_FUNCTIONS = "azure_functions",
readonly AZURE_FUNCTIONS: "azure_functions";
/** Azure App Service. */
AZURE_APP_SERVICE = "azure_app_service",
readonly AZURE_APP_SERVICE: "azure_app_service";
/** Google Cloud Compute Engine (GCE). */
GCP_COMPUTE_ENGINE = "gcp_compute_engine",
readonly GCP_COMPUTE_ENGINE: "gcp_compute_engine";
/** Google Cloud Run. */
GCP_CLOUD_RUN = "gcp_cloud_run",
readonly GCP_CLOUD_RUN: "gcp_cloud_run";
/** Google Cloud Kubernetes Engine (GKE). */
GCP_KUBERNETES_ENGINE = "gcp_kubernetes_engine",
readonly GCP_KUBERNETES_ENGINE: "gcp_kubernetes_engine";
/** Google Cloud Functions (GCF). */
GCP_CLOUD_FUNCTIONS = "gcp_cloud_functions",
readonly GCP_CLOUD_FUNCTIONS: "gcp_cloud_functions";
/** Google Cloud App Engine (GAE). */
GCP_APP_ENGINE = "gcp_app_engine"
}
export declare enum AwsEcsLaunchtypeValues {
readonly GCP_APP_ENGINE: "gcp_app_engine";
};
export declare type CloudPlatformValues = typeof CloudPlatformValues[keyof typeof CloudPlatformValues];
export declare const AwsEcsLaunchtypeValues: {
/** ec2. */
EC2 = "ec2",
readonly EC2: "ec2";
/** fargate. */
FARGATE = "fargate"
}
export declare enum HostArchValues {
readonly FARGATE: "fargate";
};
export declare type AwsEcsLaunchtypeValues = typeof AwsEcsLaunchtypeValues[keyof typeof AwsEcsLaunchtypeValues];
export declare const HostArchValues: {
/** AMD64. */
AMD64 = "amd64",
readonly AMD64: "amd64";
/** ARM32. */
ARM32 = "arm32",
readonly ARM32: "arm32";
/** ARM64. */
ARM64 = "arm64",
readonly ARM64: "arm64";
/** Itanium. */
IA64 = "ia64",
readonly IA64: "ia64";
/** 32-bit PowerPC. */
PPC32 = "ppc32",
readonly PPC32: "ppc32";
/** 64-bit PowerPC. */
PPC64 = "ppc64",
readonly PPC64: "ppc64";
/** 32-bit x86. */
X86 = "x86"
}
export declare enum OsTypeValues {
readonly X86: "x86";
};
export declare type HostArchValues = typeof HostArchValues[keyof typeof HostArchValues];
export declare const OsTypeValues: {
/** Microsoft Windows. */
WINDOWS = "windows",
readonly WINDOWS: "windows";
/** Linux. */
LINUX = "linux",
readonly LINUX: "linux";
/** Apple Darwin. */
DARWIN = "darwin",
readonly DARWIN: "darwin";
/** FreeBSD. */
FREEBSD = "freebsd",
readonly FREEBSD: "freebsd";
/** NetBSD. */
NETBSD = "netbsd",
readonly NETBSD: "netbsd";
/** OpenBSD. */
OPENBSD = "openbsd",
readonly OPENBSD: "openbsd";
/** DragonFly BSD. */
DRAGONFLYBSD = "dragonflybsd",
readonly DRAGONFLYBSD: "dragonflybsd";
/** HP-UX (Hewlett Packard Unix). */
HPUX = "hpux",
readonly HPUX: "hpux";
/** AIX (Advanced Interactive eXecutive). */
AIX = "aix",
readonly AIX: "aix";
/** Oracle Solaris. */
SOLARIS = "solaris",
readonly SOLARIS: "solaris";
/** IBM z/OS. */
Z_OS = "z_os"
}
export declare enum TelemetrySdkLanguageValues {
readonly Z_OS: "z_os";
};
export declare type OsTypeValues = typeof OsTypeValues[keyof typeof OsTypeValues];
export declare const TelemetrySdkLanguageValues: {
/** cpp. */
CPP = "cpp",
readonly CPP: "cpp";
/** dotnet. */
DOTNET = "dotnet",
readonly DOTNET: "dotnet";
/** erlang. */
ERLANG = "erlang",
readonly ERLANG: "erlang";
/** go. */
GO = "go",
readonly GO: "go";
/** java. */
JAVA = "java",
readonly JAVA: "java";
/** nodejs. */
NODEJS = "nodejs",
readonly NODEJS: "nodejs";
/** php. */
PHP = "php",
readonly PHP: "php";
/** python. */
PYTHON = "python",
readonly PYTHON: "python";
/** ruby. */
RUBY = "ruby",
readonly RUBY: "ruby";
/** webjs. */
WEBJS = "webjs"
}
readonly WEBJS: "webjs";
};
export declare type TelemetrySdkLanguageValues = typeof TelemetrySdkLanguageValues[keyof typeof TelemetrySdkLanguageValues];
//# sourceMappingURL=SemanticResourceAttributes.d.ts.map

@@ -396,123 +396,116 @@ /*

};
// Enum definitions
export var CloudProviderValues;
(function (CloudProviderValues) {
export var CloudProviderValues = {
/** Alibaba Cloud. */
CloudProviderValues["ALIBABA_CLOUD"] = "alibaba_cloud";
ALIBABA_CLOUD: 'alibaba_cloud',
/** Amazon Web Services. */
CloudProviderValues["AWS"] = "aws";
AWS: 'aws',
/** Microsoft Azure. */
CloudProviderValues["AZURE"] = "azure";
AZURE: 'azure',
/** Google Cloud Platform. */
CloudProviderValues["GCP"] = "gcp";
})(CloudProviderValues || (CloudProviderValues = {}));
export var CloudPlatformValues;
(function (CloudPlatformValues) {
GCP: 'gcp',
};
export var CloudPlatformValues = {
/** Alibaba Cloud Elastic Compute Service. */
CloudPlatformValues["ALIBABA_CLOUD_ECS"] = "alibaba_cloud_ecs";
ALIBABA_CLOUD_ECS: 'alibaba_cloud_ecs',
/** Alibaba Cloud Function Compute. */
CloudPlatformValues["ALIBABA_CLOUD_FC"] = "alibaba_cloud_fc";
ALIBABA_CLOUD_FC: 'alibaba_cloud_fc',
/** AWS Elastic Compute Cloud. */
CloudPlatformValues["AWS_EC2"] = "aws_ec2";
AWS_EC2: 'aws_ec2',
/** AWS Elastic Container Service. */
CloudPlatformValues["AWS_ECS"] = "aws_ecs";
AWS_ECS: 'aws_ecs',
/** AWS Elastic Kubernetes Service. */
CloudPlatformValues["AWS_EKS"] = "aws_eks";
AWS_EKS: 'aws_eks',
/** AWS Lambda. */
CloudPlatformValues["AWS_LAMBDA"] = "aws_lambda";
AWS_LAMBDA: 'aws_lambda',
/** AWS Elastic Beanstalk. */
CloudPlatformValues["AWS_ELASTIC_BEANSTALK"] = "aws_elastic_beanstalk";
AWS_ELASTIC_BEANSTALK: 'aws_elastic_beanstalk',
/** Azure Virtual Machines. */
CloudPlatformValues["AZURE_VM"] = "azure_vm";
AZURE_VM: 'azure_vm',
/** Azure Container Instances. */
CloudPlatformValues["AZURE_CONTAINER_INSTANCES"] = "azure_container_instances";
AZURE_CONTAINER_INSTANCES: 'azure_container_instances',
/** Azure Kubernetes Service. */
CloudPlatformValues["AZURE_AKS"] = "azure_aks";
AZURE_AKS: 'azure_aks',
/** Azure Functions. */
CloudPlatformValues["AZURE_FUNCTIONS"] = "azure_functions";
AZURE_FUNCTIONS: 'azure_functions',
/** Azure App Service. */
CloudPlatformValues["AZURE_APP_SERVICE"] = "azure_app_service";
AZURE_APP_SERVICE: 'azure_app_service',
/** Google Cloud Compute Engine (GCE). */
CloudPlatformValues["GCP_COMPUTE_ENGINE"] = "gcp_compute_engine";
GCP_COMPUTE_ENGINE: 'gcp_compute_engine',
/** Google Cloud Run. */
CloudPlatformValues["GCP_CLOUD_RUN"] = "gcp_cloud_run";
GCP_CLOUD_RUN: 'gcp_cloud_run',
/** Google Cloud Kubernetes Engine (GKE). */
CloudPlatformValues["GCP_KUBERNETES_ENGINE"] = "gcp_kubernetes_engine";
GCP_KUBERNETES_ENGINE: 'gcp_kubernetes_engine',
/** Google Cloud Functions (GCF). */
CloudPlatformValues["GCP_CLOUD_FUNCTIONS"] = "gcp_cloud_functions";
GCP_CLOUD_FUNCTIONS: 'gcp_cloud_functions',
/** Google Cloud App Engine (GAE). */
CloudPlatformValues["GCP_APP_ENGINE"] = "gcp_app_engine";
})(CloudPlatformValues || (CloudPlatformValues = {}));
export var AwsEcsLaunchtypeValues;
(function (AwsEcsLaunchtypeValues) {
GCP_APP_ENGINE: 'gcp_app_engine',
};
export var AwsEcsLaunchtypeValues = {
/** ec2. */
AwsEcsLaunchtypeValues["EC2"] = "ec2";
EC2: 'ec2',
/** fargate. */
AwsEcsLaunchtypeValues["FARGATE"] = "fargate";
})(AwsEcsLaunchtypeValues || (AwsEcsLaunchtypeValues = {}));
export var HostArchValues;
(function (HostArchValues) {
FARGATE: 'fargate',
};
export var HostArchValues = {
/** AMD64. */
HostArchValues["AMD64"] = "amd64";
AMD64: 'amd64',
/** ARM32. */
HostArchValues["ARM32"] = "arm32";
ARM32: 'arm32',
/** ARM64. */
HostArchValues["ARM64"] = "arm64";
ARM64: 'arm64',
/** Itanium. */
HostArchValues["IA64"] = "ia64";
IA64: 'ia64',
/** 32-bit PowerPC. */
HostArchValues["PPC32"] = "ppc32";
PPC32: 'ppc32',
/** 64-bit PowerPC. */
HostArchValues["PPC64"] = "ppc64";
PPC64: 'ppc64',
/** 32-bit x86. */
HostArchValues["X86"] = "x86";
})(HostArchValues || (HostArchValues = {}));
export var OsTypeValues;
(function (OsTypeValues) {
X86: 'x86',
};
export var OsTypeValues = {
/** Microsoft Windows. */
OsTypeValues["WINDOWS"] = "windows";
WINDOWS: 'windows',
/** Linux. */
OsTypeValues["LINUX"] = "linux";
LINUX: 'linux',
/** Apple Darwin. */
OsTypeValues["DARWIN"] = "darwin";
DARWIN: 'darwin',
/** FreeBSD. */
OsTypeValues["FREEBSD"] = "freebsd";
FREEBSD: 'freebsd',
/** NetBSD. */
OsTypeValues["NETBSD"] = "netbsd";
NETBSD: 'netbsd',
/** OpenBSD. */
OsTypeValues["OPENBSD"] = "openbsd";
OPENBSD: 'openbsd',
/** DragonFly BSD. */
OsTypeValues["DRAGONFLYBSD"] = "dragonflybsd";
DRAGONFLYBSD: 'dragonflybsd',
/** HP-UX (Hewlett Packard Unix). */
OsTypeValues["HPUX"] = "hpux";
HPUX: 'hpux',
/** AIX (Advanced Interactive eXecutive). */
OsTypeValues["AIX"] = "aix";
AIX: 'aix',
/** Oracle Solaris. */
OsTypeValues["SOLARIS"] = "solaris";
SOLARIS: 'solaris',
/** IBM z/OS. */
OsTypeValues["Z_OS"] = "z_os";
})(OsTypeValues || (OsTypeValues = {}));
export var TelemetrySdkLanguageValues;
(function (TelemetrySdkLanguageValues) {
Z_OS: 'z_os',
};
export var TelemetrySdkLanguageValues = {
/** cpp. */
TelemetrySdkLanguageValues["CPP"] = "cpp";
CPP: 'cpp',
/** dotnet. */
TelemetrySdkLanguageValues["DOTNET"] = "dotnet";
DOTNET: 'dotnet',
/** erlang. */
TelemetrySdkLanguageValues["ERLANG"] = "erlang";
ERLANG: 'erlang',
/** go. */
TelemetrySdkLanguageValues["GO"] = "go";
GO: 'go',
/** java. */
TelemetrySdkLanguageValues["JAVA"] = "java";
JAVA: 'java',
/** nodejs. */
TelemetrySdkLanguageValues["NODEJS"] = "nodejs";
NODEJS: 'nodejs',
/** php. */
TelemetrySdkLanguageValues["PHP"] = "php";
PHP: 'php',
/** python. */
TelemetrySdkLanguageValues["PYTHON"] = "python";
PYTHON: 'python',
/** ruby. */
TelemetrySdkLanguageValues["RUBY"] = "ruby";
RUBY: 'ruby',
/** webjs. */
TelemetrySdkLanguageValues["WEBJS"] = "webjs";
})(TelemetrySdkLanguageValues || (TelemetrySdkLanguageValues = {}));
WEBJS: 'webjs',
};
//# sourceMappingURL=SemanticResourceAttributes.js.map

@@ -294,3 +294,5 @@ export declare const SemanticAttributes: {

/**
* The value of the [HTTP host header](https://tools.ietf.org/html/rfc7230#section-5.4). When the header is empty or not present, this attribute should be the same.
* The value of the [HTTP host header](https://tools.ietf.org/html/rfc7230#section-5.4). An empty Host header should also be reported, see note.
*
* Note: When the header is present but empty the attribute SHOULD be set to the empty string. Note that this is a valid situation that is expected in certain cases, according the aforementioned [section of RFC 7230](https://tools.ietf.org/html/rfc7230#section-5.4). When the header is not set the attribute MUST NOT be set.
*/

@@ -345,3 +347,13 @@ HTTP_HOST: string;

*
* Note: This is not necessarily the same as `net.peer.ip`, which would identify the network-level peer, which may be a proxy.
* Note: This is not necessarily the same as `net.peer.ip`, which would
identify the network-level peer, which may be a proxy.
This attribute should be set when a source of information different
from the one used for `net.peer.ip`, is available even if that other
source just confirms the same value as `net.peer.ip`.
Rationale: For `net.peer.ip`, one typically does not know if it
comes from a proxy, reverse proxy, or the actual client. Setting
`http.client_ip` when it's the same as `net.peer.ip` means that
one is at least somewhat confident that the address is not that of
the closest proxy.
*/

@@ -486,2 +498,6 @@ HTTP_CLIENT_IP: string;

/**
* The identifier for the consumer receiving a message. For Kafka, set it to `{messaging.kafka.consumer_group} - {messaging.kafka.client_id}`, if both are present, or only `messaging.kafka.consumer_group`. For brokers, such as RabbitMQ and Artemis, set it to the `client_id` of the client consuming the message.
*/
MESSAGING_CONSUMER_ID: string;
/**
* RabbitMQ message routing key.

@@ -548,285 +564,322 @@ */

RPC_JSONRPC_ERROR_MESSAGE: string;
/**
* Whether this is a received or sent message.
*/
MESSAGE_TYPE: string;
/**
* MUST be calculated as two different counters starting from `1` one for sent messages and one for received message.
*
* Note: This way we guarantee that the values will be consistent between different implementations.
*/
MESSAGE_ID: string;
/**
* Compressed size of the message in bytes.
*/
MESSAGE_COMPRESSED_SIZE: string;
/**
* Uncompressed size of the message in bytes.
*/
MESSAGE_UNCOMPRESSED_SIZE: string;
};
export declare enum DbSystemValues {
export declare const DbSystemValues: {
/** Some other SQL database. Fallback only. See notes. */
OTHER_SQL = "other_sql",
readonly OTHER_SQL: "other_sql";
/** Microsoft SQL Server. */
MSSQL = "mssql",
readonly MSSQL: "mssql";
/** MySQL. */
MYSQL = "mysql",
readonly MYSQL: "mysql";
/** Oracle Database. */
ORACLE = "oracle",
readonly ORACLE: "oracle";
/** IBM Db2. */
DB2 = "db2",
readonly DB2: "db2";
/** PostgreSQL. */
POSTGRESQL = "postgresql",
readonly POSTGRESQL: "postgresql";
/** Amazon Redshift. */
REDSHIFT = "redshift",
readonly REDSHIFT: "redshift";
/** Apache Hive. */
HIVE = "hive",
readonly HIVE: "hive";
/** Cloudscape. */
CLOUDSCAPE = "cloudscape",
readonly CLOUDSCAPE: "cloudscape";
/** HyperSQL DataBase. */
HSQLDB = "hsqldb",
readonly HSQLDB: "hsqldb";
/** Progress Database. */
PROGRESS = "progress",
readonly PROGRESS: "progress";
/** SAP MaxDB. */
MAXDB = "maxdb",
readonly MAXDB: "maxdb";
/** SAP HANA. */
HANADB = "hanadb",
readonly HANADB: "hanadb";
/** Ingres. */
INGRES = "ingres",
readonly INGRES: "ingres";
/** FirstSQL. */
FIRSTSQL = "firstsql",
readonly FIRSTSQL: "firstsql";
/** EnterpriseDB. */
EDB = "edb",
readonly EDB: "edb";
/** InterSystems Caché. */
CACHE = "cache",
readonly CACHE: "cache";
/** Adabas (Adaptable Database System). */
ADABAS = "adabas",
readonly ADABAS: "adabas";
/** Firebird. */
FIREBIRD = "firebird",
readonly FIREBIRD: "firebird";
/** Apache Derby. */
DERBY = "derby",
readonly DERBY: "derby";
/** FileMaker. */
FILEMAKER = "filemaker",
readonly FILEMAKER: "filemaker";
/** Informix. */
INFORMIX = "informix",
readonly INFORMIX: "informix";
/** InstantDB. */
INSTANTDB = "instantdb",
readonly INSTANTDB: "instantdb";
/** InterBase. */
INTERBASE = "interbase",
readonly INTERBASE: "interbase";
/** MariaDB. */
MARIADB = "mariadb",
readonly MARIADB: "mariadb";
/** Netezza. */
NETEZZA = "netezza",
readonly NETEZZA: "netezza";
/** Pervasive PSQL. */
PERVASIVE = "pervasive",
readonly PERVASIVE: "pervasive";
/** PointBase. */
POINTBASE = "pointbase",
readonly POINTBASE: "pointbase";
/** SQLite. */
SQLITE = "sqlite",
readonly SQLITE: "sqlite";
/** Sybase. */
SYBASE = "sybase",
readonly SYBASE: "sybase";
/** Teradata. */
TERADATA = "teradata",
readonly TERADATA: "teradata";
/** Vertica. */
VERTICA = "vertica",
readonly VERTICA: "vertica";
/** H2. */
H2 = "h2",
readonly H2: "h2";
/** ColdFusion IMQ. */
COLDFUSION = "coldfusion",
readonly COLDFUSION: "coldfusion";
/** Apache Cassandra. */
CASSANDRA = "cassandra",
readonly CASSANDRA: "cassandra";
/** Apache HBase. */
HBASE = "hbase",
readonly HBASE: "hbase";
/** MongoDB. */
MONGODB = "mongodb",
readonly MONGODB: "mongodb";
/** Redis. */
REDIS = "redis",
readonly REDIS: "redis";
/** Couchbase. */
COUCHBASE = "couchbase",
readonly COUCHBASE: "couchbase";
/** CouchDB. */
COUCHDB = "couchdb",
readonly COUCHDB: "couchdb";
/** Microsoft Azure Cosmos DB. */
COSMOSDB = "cosmosdb",
readonly COSMOSDB: "cosmosdb";
/** Amazon DynamoDB. */
DYNAMODB = "dynamodb",
readonly DYNAMODB: "dynamodb";
/** Neo4j. */
NEO4J = "neo4j",
readonly NEO4J: "neo4j";
/** Apache Geode. */
GEODE = "geode",
readonly GEODE: "geode";
/** Elasticsearch. */
ELASTICSEARCH = "elasticsearch",
readonly ELASTICSEARCH: "elasticsearch";
/** Memcached. */
MEMCACHED = "memcached",
readonly MEMCACHED: "memcached";
/** CockroachDB. */
COCKROACHDB = "cockroachdb"
}
export declare enum DbCassandraConsistencyLevelValues {
readonly COCKROACHDB: "cockroachdb";
};
export declare type DbSystemValues = typeof DbSystemValues[keyof typeof DbSystemValues];
export declare const DbCassandraConsistencyLevelValues: {
/** all. */
ALL = "all",
readonly ALL: "all";
/** each_quorum. */
EACH_QUORUM = "each_quorum",
readonly EACH_QUORUM: "each_quorum";
/** quorum. */
QUORUM = "quorum",
readonly QUORUM: "quorum";
/** local_quorum. */
LOCAL_QUORUM = "local_quorum",
readonly LOCAL_QUORUM: "local_quorum";
/** one. */
ONE = "one",
readonly ONE: "one";
/** two. */
TWO = "two",
readonly TWO: "two";
/** three. */
THREE = "three",
readonly THREE: "three";
/** local_one. */
LOCAL_ONE = "local_one",
readonly LOCAL_ONE: "local_one";
/** any. */
ANY = "any",
readonly ANY: "any";
/** serial. */
SERIAL = "serial",
readonly SERIAL: "serial";
/** local_serial. */
LOCAL_SERIAL = "local_serial"
}
export declare enum FaasTriggerValues {
readonly LOCAL_SERIAL: "local_serial";
};
export declare type DbCassandraConsistencyLevelValues = typeof DbCassandraConsistencyLevelValues[keyof typeof DbCassandraConsistencyLevelValues];
export declare const FaasTriggerValues: {
/** A response to some data source operation such as a database or filesystem read/write. */
DATASOURCE = "datasource",
readonly DATASOURCE: "datasource";
/** To provide an answer to an inbound HTTP request. */
HTTP = "http",
readonly HTTP: "http";
/** A function is set to be executed when messages are sent to a messaging system. */
PUBSUB = "pubsub",
readonly PUBSUB: "pubsub";
/** A function is scheduled to be executed regularly. */
TIMER = "timer",
readonly TIMER: "timer";
/** If none of the others apply. */
OTHER = "other"
}
export declare enum FaasDocumentOperationValues {
readonly OTHER: "other";
};
export declare type FaasTriggerValues = typeof FaasTriggerValues[keyof typeof FaasTriggerValues];
export declare const FaasDocumentOperationValues: {
/** When a new object is created. */
INSERT = "insert",
readonly INSERT: "insert";
/** When an object is modified. */
EDIT = "edit",
readonly EDIT: "edit";
/** When an object is deleted. */
DELETE = "delete"
}
export declare enum FaasInvokedProviderValues {
readonly DELETE: "delete";
};
export declare type FaasDocumentOperationValues = typeof FaasDocumentOperationValues[keyof typeof FaasDocumentOperationValues];
export declare const FaasInvokedProviderValues: {
/** Alibaba Cloud. */
ALIBABA_CLOUD = "alibaba_cloud",
readonly ALIBABA_CLOUD: "alibaba_cloud";
/** Amazon Web Services. */
AWS = "aws",
readonly AWS: "aws";
/** Microsoft Azure. */
AZURE = "azure",
readonly AZURE: "azure";
/** Google Cloud Platform. */
GCP = "gcp"
}
export declare enum NetTransportValues {
readonly GCP: "gcp";
};
export declare type FaasInvokedProviderValues = typeof FaasInvokedProviderValues[keyof typeof FaasInvokedProviderValues];
export declare const NetTransportValues: {
/** ip_tcp. */
IP_TCP = "ip_tcp",
readonly IP_TCP: "ip_tcp";
/** ip_udp. */
IP_UDP = "ip_udp",
readonly IP_UDP: "ip_udp";
/** Another IP-based protocol. */
IP = "ip",
readonly IP: "ip";
/** Unix Domain socket. See below. */
UNIX = "unix",
readonly UNIX: "unix";
/** Named or anonymous pipe. See note below. */
PIPE = "pipe",
readonly PIPE: "pipe";
/** In-process communication. */
INPROC = "inproc",
readonly INPROC: "inproc";
/** Something else (non IP-based). */
OTHER = "other"
}
export declare enum NetHostConnectionTypeValues {
readonly OTHER: "other";
};
export declare type NetTransportValues = typeof NetTransportValues[keyof typeof NetTransportValues];
export declare const NetHostConnectionTypeValues: {
/** wifi. */
WIFI = "wifi",
readonly WIFI: "wifi";
/** wired. */
WIRED = "wired",
readonly WIRED: "wired";
/** cell. */
CELL = "cell",
readonly CELL: "cell";
/** unavailable. */
UNAVAILABLE = "unavailable",
readonly UNAVAILABLE: "unavailable";
/** unknown. */
UNKNOWN = "unknown"
}
export declare enum NetHostConnectionSubtypeValues {
readonly UNKNOWN: "unknown";
};
export declare type NetHostConnectionTypeValues = typeof NetHostConnectionTypeValues[keyof typeof NetHostConnectionTypeValues];
export declare const NetHostConnectionSubtypeValues: {
/** GPRS. */
GPRS = "gprs",
readonly GPRS: "gprs";
/** EDGE. */
EDGE = "edge",
readonly EDGE: "edge";
/** UMTS. */
UMTS = "umts",
readonly UMTS: "umts";
/** CDMA. */
CDMA = "cdma",
readonly CDMA: "cdma";
/** EVDO Rel. 0. */
EVDO_0 = "evdo_0",
readonly EVDO_0: "evdo_0";
/** EVDO Rev. A. */
EVDO_A = "evdo_a",
readonly EVDO_A: "evdo_a";
/** CDMA2000 1XRTT. */
CDMA2000_1XRTT = "cdma2000_1xrtt",
readonly CDMA2000_1XRTT: "cdma2000_1xrtt";
/** HSDPA. */
HSDPA = "hsdpa",
readonly HSDPA: "hsdpa";
/** HSUPA. */
HSUPA = "hsupa",
readonly HSUPA: "hsupa";
/** HSPA. */
HSPA = "hspa",
readonly HSPA: "hspa";
/** IDEN. */
IDEN = "iden",
readonly IDEN: "iden";
/** EVDO Rev. B. */
EVDO_B = "evdo_b",
readonly EVDO_B: "evdo_b";
/** LTE. */
LTE = "lte",
readonly LTE: "lte";
/** EHRPD. */
EHRPD = "ehrpd",
readonly EHRPD: "ehrpd";
/** HSPAP. */
HSPAP = "hspap",
readonly HSPAP: "hspap";
/** GSM. */
GSM = "gsm",
readonly GSM: "gsm";
/** TD-SCDMA. */
TD_SCDMA = "td_scdma",
readonly TD_SCDMA: "td_scdma";
/** IWLAN. */
IWLAN = "iwlan",
readonly IWLAN: "iwlan";
/** 5G NR (New Radio). */
NR = "nr",
readonly NR: "nr";
/** 5G NRNSA (New Radio Non-Standalone). */
NRNSA = "nrnsa",
readonly NRNSA: "nrnsa";
/** LTE CA. */
LTE_CA = "lte_ca"
}
export declare enum HttpFlavorValues {
readonly LTE_CA: "lte_ca";
};
export declare type NetHostConnectionSubtypeValues = typeof NetHostConnectionSubtypeValues[keyof typeof NetHostConnectionSubtypeValues];
export declare const HttpFlavorValues: {
/** HTTP 1.0. */
HTTP_1_0 = "1.0",
readonly HTTP_1_0: "1.0";
/** HTTP 1.1. */
HTTP_1_1 = "1.1",
readonly HTTP_1_1: "1.1";
/** HTTP 2. */
HTTP_2_0 = "2.0",
readonly HTTP_2_0: "2.0";
/** SPDY protocol. */
SPDY = "SPDY",
readonly SPDY: "SPDY";
/** QUIC protocol. */
QUIC = "QUIC"
}
export declare enum MessagingDestinationKindValues {
readonly QUIC: "QUIC";
};
export declare type HttpFlavorValues = typeof HttpFlavorValues[keyof typeof HttpFlavorValues];
export declare const MessagingDestinationKindValues: {
/** A message sent to a queue. */
QUEUE = "queue",
readonly QUEUE: "queue";
/** A message sent to a topic. */
TOPIC = "topic"
}
export declare enum MessagingOperationValues {
readonly TOPIC: "topic";
};
export declare type MessagingDestinationKindValues = typeof MessagingDestinationKindValues[keyof typeof MessagingDestinationKindValues];
export declare const MessagingOperationValues: {
/** receive. */
RECEIVE = "receive",
readonly RECEIVE: "receive";
/** process. */
PROCESS = "process"
}
export declare enum RpcGrpcStatusCodeValues {
readonly PROCESS: "process";
};
export declare type MessagingOperationValues = typeof MessagingOperationValues[keyof typeof MessagingOperationValues];
export declare const RpcGrpcStatusCodeValues: {
/** OK. */
OK = 0,
readonly OK: 0;
/** CANCELLED. */
CANCELLED = 1,
readonly CANCELLED: 1;
/** UNKNOWN. */
UNKNOWN = 2,
readonly UNKNOWN: 2;
/** INVALID_ARGUMENT. */
INVALID_ARGUMENT = 3,
readonly INVALID_ARGUMENT: 3;
/** DEADLINE_EXCEEDED. */
DEADLINE_EXCEEDED = 4,
readonly DEADLINE_EXCEEDED: 4;
/** NOT_FOUND. */
NOT_FOUND = 5,
readonly NOT_FOUND: 5;
/** ALREADY_EXISTS. */
ALREADY_EXISTS = 6,
readonly ALREADY_EXISTS: 6;
/** PERMISSION_DENIED. */
PERMISSION_DENIED = 7,
readonly PERMISSION_DENIED: 7;
/** RESOURCE_EXHAUSTED. */
RESOURCE_EXHAUSTED = 8,
readonly RESOURCE_EXHAUSTED: 8;
/** FAILED_PRECONDITION. */
FAILED_PRECONDITION = 9,
readonly FAILED_PRECONDITION: 9;
/** ABORTED. */
ABORTED = 10,
readonly ABORTED: 10;
/** OUT_OF_RANGE. */
OUT_OF_RANGE = 11,
readonly OUT_OF_RANGE: 11;
/** UNIMPLEMENTED. */
UNIMPLEMENTED = 12,
readonly UNIMPLEMENTED: 12;
/** INTERNAL. */
INTERNAL = 13,
readonly INTERNAL: 13;
/** UNAVAILABLE. */
UNAVAILABLE = 14,
readonly UNAVAILABLE: 14;
/** DATA_LOSS. */
DATA_LOSS = 15,
readonly DATA_LOSS: 15;
/** UNAUTHENTICATED. */
UNAUTHENTICATED = 16
}
readonly UNAUTHENTICATED: 16;
};
export declare type RpcGrpcStatusCodeValues = typeof RpcGrpcStatusCodeValues[keyof typeof RpcGrpcStatusCodeValues];
export declare const MessageTypeValues: {
/** sent. */
readonly SENT: "SENT";
/** received. */
readonly RECEIVED: "RECEIVED";
};
export declare type MessageTypeValues = typeof MessageTypeValues[keyof typeof MessageTypeValues];
//# sourceMappingURL=SemanticAttributes.d.ts.map

@@ -310,3 +310,5 @@ /*

/**
* The value of the [HTTP host header](https://tools.ietf.org/html/rfc7230#section-5.4). When the header is empty or not present, this attribute should be the same.
* The value of the [HTTP host header](https://tools.ietf.org/html/rfc7230#section-5.4). An empty Host header should also be reported, see note.
*
* Note: When the header is present but empty the attribute SHOULD be set to the empty string. Note that this is a valid situation that is expected in certain cases, according the aforementioned [section of RFC 7230](https://tools.ietf.org/html/rfc7230#section-5.4). When the header is not set the attribute MUST NOT be set.
*/

@@ -361,3 +363,13 @@ HTTP_HOST: 'http.host',

*
* Note: This is not necessarily the same as `net.peer.ip`, which would identify the network-level peer, which may be a proxy.
* Note: This is not necessarily the same as `net.peer.ip`, which would
identify the network-level peer, which may be a proxy.
This attribute should be set when a source of information different
from the one used for `net.peer.ip`, is available even if that other
source just confirms the same value as `net.peer.ip`.
Rationale: For `net.peer.ip`, one typically does not know if it
comes from a proxy, reverse proxy, or the actual client. Setting
`http.client_ip` when it's the same as `net.peer.ip` means that
one is at least somewhat confident that the address is not that of
the closest proxy.
*/

@@ -502,2 +514,6 @@ HTTP_CLIENT_IP: 'http.client_ip',

/**
* The identifier for the consumer receiving a message. For Kafka, set it to `{messaging.kafka.consumer_group} - {messaging.kafka.client_id}`, if both are present, or only `messaging.kafka.consumer_group`. For brokers, such as RabbitMQ and Artemis, set it to the `client_id` of the client consuming the message.
*/
MESSAGING_CONSUMER_ID: 'messaging.consumer_id',
/**
* RabbitMQ message routing key.

@@ -564,298 +580,309 @@ */

RPC_JSONRPC_ERROR_MESSAGE: 'rpc.jsonrpc.error_message',
/**
* Whether this is a received or sent message.
*/
MESSAGE_TYPE: 'message.type',
/**
* MUST be calculated as two different counters starting from `1` one for sent messages and one for received message.
*
* Note: This way we guarantee that the values will be consistent between different implementations.
*/
MESSAGE_ID: 'message.id',
/**
* Compressed size of the message in bytes.
*/
MESSAGE_COMPRESSED_SIZE: 'message.compressed_size',
/**
* Uncompressed size of the message in bytes.
*/
MESSAGE_UNCOMPRESSED_SIZE: 'message.uncompressed_size',
};
// Enum definitions
export var DbSystemValues;
(function (DbSystemValues) {
export var DbSystemValues = {
/** Some other SQL database. Fallback only. See notes. */
DbSystemValues["OTHER_SQL"] = "other_sql";
OTHER_SQL: 'other_sql',
/** Microsoft SQL Server. */
DbSystemValues["MSSQL"] = "mssql";
MSSQL: 'mssql',
/** MySQL. */
DbSystemValues["MYSQL"] = "mysql";
MYSQL: 'mysql',
/** Oracle Database. */
DbSystemValues["ORACLE"] = "oracle";
ORACLE: 'oracle',
/** IBM Db2. */
DbSystemValues["DB2"] = "db2";
DB2: 'db2',
/** PostgreSQL. */
DbSystemValues["POSTGRESQL"] = "postgresql";
POSTGRESQL: 'postgresql',
/** Amazon Redshift. */
DbSystemValues["REDSHIFT"] = "redshift";
REDSHIFT: 'redshift',
/** Apache Hive. */
DbSystemValues["HIVE"] = "hive";
HIVE: 'hive',
/** Cloudscape. */
DbSystemValues["CLOUDSCAPE"] = "cloudscape";
CLOUDSCAPE: 'cloudscape',
/** HyperSQL DataBase. */
DbSystemValues["HSQLDB"] = "hsqldb";
HSQLDB: 'hsqldb',
/** Progress Database. */
DbSystemValues["PROGRESS"] = "progress";
PROGRESS: 'progress',
/** SAP MaxDB. */
DbSystemValues["MAXDB"] = "maxdb";
MAXDB: 'maxdb',
/** SAP HANA. */
DbSystemValues["HANADB"] = "hanadb";
HANADB: 'hanadb',
/** Ingres. */
DbSystemValues["INGRES"] = "ingres";
INGRES: 'ingres',
/** FirstSQL. */
DbSystemValues["FIRSTSQL"] = "firstsql";
FIRSTSQL: 'firstsql',
/** EnterpriseDB. */
DbSystemValues["EDB"] = "edb";
EDB: 'edb',
/** InterSystems Caché. */
DbSystemValues["CACHE"] = "cache";
CACHE: 'cache',
/** Adabas (Adaptable Database System). */
DbSystemValues["ADABAS"] = "adabas";
ADABAS: 'adabas',
/** Firebird. */
DbSystemValues["FIREBIRD"] = "firebird";
FIREBIRD: 'firebird',
/** Apache Derby. */
DbSystemValues["DERBY"] = "derby";
DERBY: 'derby',
/** FileMaker. */
DbSystemValues["FILEMAKER"] = "filemaker";
FILEMAKER: 'filemaker',
/** Informix. */
DbSystemValues["INFORMIX"] = "informix";
INFORMIX: 'informix',
/** InstantDB. */
DbSystemValues["INSTANTDB"] = "instantdb";
INSTANTDB: 'instantdb',
/** InterBase. */
DbSystemValues["INTERBASE"] = "interbase";
INTERBASE: 'interbase',
/** MariaDB. */
DbSystemValues["MARIADB"] = "mariadb";
MARIADB: 'mariadb',
/** Netezza. */
DbSystemValues["NETEZZA"] = "netezza";
NETEZZA: 'netezza',
/** Pervasive PSQL. */
DbSystemValues["PERVASIVE"] = "pervasive";
PERVASIVE: 'pervasive',
/** PointBase. */
DbSystemValues["POINTBASE"] = "pointbase";
POINTBASE: 'pointbase',
/** SQLite. */
DbSystemValues["SQLITE"] = "sqlite";
SQLITE: 'sqlite',
/** Sybase. */
DbSystemValues["SYBASE"] = "sybase";
SYBASE: 'sybase',
/** Teradata. */
DbSystemValues["TERADATA"] = "teradata";
TERADATA: 'teradata',
/** Vertica. */
DbSystemValues["VERTICA"] = "vertica";
VERTICA: 'vertica',
/** H2. */
DbSystemValues["H2"] = "h2";
H2: 'h2',
/** ColdFusion IMQ. */
DbSystemValues["COLDFUSION"] = "coldfusion";
COLDFUSION: 'coldfusion',
/** Apache Cassandra. */
DbSystemValues["CASSANDRA"] = "cassandra";
CASSANDRA: 'cassandra',
/** Apache HBase. */
DbSystemValues["HBASE"] = "hbase";
HBASE: 'hbase',
/** MongoDB. */
DbSystemValues["MONGODB"] = "mongodb";
MONGODB: 'mongodb',
/** Redis. */
DbSystemValues["REDIS"] = "redis";
REDIS: 'redis',
/** Couchbase. */
DbSystemValues["COUCHBASE"] = "couchbase";
COUCHBASE: 'couchbase',
/** CouchDB. */
DbSystemValues["COUCHDB"] = "couchdb";
COUCHDB: 'couchdb',
/** Microsoft Azure Cosmos DB. */
DbSystemValues["COSMOSDB"] = "cosmosdb";
COSMOSDB: 'cosmosdb',
/** Amazon DynamoDB. */
DbSystemValues["DYNAMODB"] = "dynamodb";
DYNAMODB: 'dynamodb',
/** Neo4j. */
DbSystemValues["NEO4J"] = "neo4j";
NEO4J: 'neo4j',
/** Apache Geode. */
DbSystemValues["GEODE"] = "geode";
GEODE: 'geode',
/** Elasticsearch. */
DbSystemValues["ELASTICSEARCH"] = "elasticsearch";
ELASTICSEARCH: 'elasticsearch',
/** Memcached. */
DbSystemValues["MEMCACHED"] = "memcached";
MEMCACHED: 'memcached',
/** CockroachDB. */
DbSystemValues["COCKROACHDB"] = "cockroachdb";
})(DbSystemValues || (DbSystemValues = {}));
export var DbCassandraConsistencyLevelValues;
(function (DbCassandraConsistencyLevelValues) {
COCKROACHDB: 'cockroachdb',
};
export var DbCassandraConsistencyLevelValues = {
/** all. */
DbCassandraConsistencyLevelValues["ALL"] = "all";
ALL: 'all',
/** each_quorum. */
DbCassandraConsistencyLevelValues["EACH_QUORUM"] = "each_quorum";
EACH_QUORUM: 'each_quorum',
/** quorum. */
DbCassandraConsistencyLevelValues["QUORUM"] = "quorum";
QUORUM: 'quorum',
/** local_quorum. */
DbCassandraConsistencyLevelValues["LOCAL_QUORUM"] = "local_quorum";
LOCAL_QUORUM: 'local_quorum',
/** one. */
DbCassandraConsistencyLevelValues["ONE"] = "one";
ONE: 'one',
/** two. */
DbCassandraConsistencyLevelValues["TWO"] = "two";
TWO: 'two',
/** three. */
DbCassandraConsistencyLevelValues["THREE"] = "three";
THREE: 'three',
/** local_one. */
DbCassandraConsistencyLevelValues["LOCAL_ONE"] = "local_one";
LOCAL_ONE: 'local_one',
/** any. */
DbCassandraConsistencyLevelValues["ANY"] = "any";
ANY: 'any',
/** serial. */
DbCassandraConsistencyLevelValues["SERIAL"] = "serial";
SERIAL: 'serial',
/** local_serial. */
DbCassandraConsistencyLevelValues["LOCAL_SERIAL"] = "local_serial";
})(DbCassandraConsistencyLevelValues || (DbCassandraConsistencyLevelValues = {}));
export var FaasTriggerValues;
(function (FaasTriggerValues) {
LOCAL_SERIAL: 'local_serial',
};
export var FaasTriggerValues = {
/** A response to some data source operation such as a database or filesystem read/write. */
FaasTriggerValues["DATASOURCE"] = "datasource";
DATASOURCE: 'datasource',
/** To provide an answer to an inbound HTTP request. */
FaasTriggerValues["HTTP"] = "http";
HTTP: 'http',
/** A function is set to be executed when messages are sent to a messaging system. */
FaasTriggerValues["PUBSUB"] = "pubsub";
PUBSUB: 'pubsub',
/** A function is scheduled to be executed regularly. */
FaasTriggerValues["TIMER"] = "timer";
TIMER: 'timer',
/** If none of the others apply. */
FaasTriggerValues["OTHER"] = "other";
})(FaasTriggerValues || (FaasTriggerValues = {}));
export var FaasDocumentOperationValues;
(function (FaasDocumentOperationValues) {
OTHER: 'other',
};
export var FaasDocumentOperationValues = {
/** When a new object is created. */
FaasDocumentOperationValues["INSERT"] = "insert";
INSERT: 'insert',
/** When an object is modified. */
FaasDocumentOperationValues["EDIT"] = "edit";
EDIT: 'edit',
/** When an object is deleted. */
FaasDocumentOperationValues["DELETE"] = "delete";
})(FaasDocumentOperationValues || (FaasDocumentOperationValues = {}));
export var FaasInvokedProviderValues;
(function (FaasInvokedProviderValues) {
DELETE: 'delete',
};
export var FaasInvokedProviderValues = {
/** Alibaba Cloud. */
FaasInvokedProviderValues["ALIBABA_CLOUD"] = "alibaba_cloud";
ALIBABA_CLOUD: 'alibaba_cloud',
/** Amazon Web Services. */
FaasInvokedProviderValues["AWS"] = "aws";
AWS: 'aws',
/** Microsoft Azure. */
FaasInvokedProviderValues["AZURE"] = "azure";
AZURE: 'azure',
/** Google Cloud Platform. */
FaasInvokedProviderValues["GCP"] = "gcp";
})(FaasInvokedProviderValues || (FaasInvokedProviderValues = {}));
export var NetTransportValues;
(function (NetTransportValues) {
GCP: 'gcp',
};
export var NetTransportValues = {
/** ip_tcp. */
NetTransportValues["IP_TCP"] = "ip_tcp";
IP_TCP: 'ip_tcp',
/** ip_udp. */
NetTransportValues["IP_UDP"] = "ip_udp";
IP_UDP: 'ip_udp',
/** Another IP-based protocol. */
NetTransportValues["IP"] = "ip";
IP: 'ip',
/** Unix Domain socket. See below. */
NetTransportValues["UNIX"] = "unix";
UNIX: 'unix',
/** Named or anonymous pipe. See note below. */
NetTransportValues["PIPE"] = "pipe";
PIPE: 'pipe',
/** In-process communication. */
NetTransportValues["INPROC"] = "inproc";
INPROC: 'inproc',
/** Something else (non IP-based). */
NetTransportValues["OTHER"] = "other";
})(NetTransportValues || (NetTransportValues = {}));
export var NetHostConnectionTypeValues;
(function (NetHostConnectionTypeValues) {
OTHER: 'other',
};
export var NetHostConnectionTypeValues = {
/** wifi. */
NetHostConnectionTypeValues["WIFI"] = "wifi";
WIFI: 'wifi',
/** wired. */
NetHostConnectionTypeValues["WIRED"] = "wired";
WIRED: 'wired',
/** cell. */
NetHostConnectionTypeValues["CELL"] = "cell";
CELL: 'cell',
/** unavailable. */
NetHostConnectionTypeValues["UNAVAILABLE"] = "unavailable";
UNAVAILABLE: 'unavailable',
/** unknown. */
NetHostConnectionTypeValues["UNKNOWN"] = "unknown";
})(NetHostConnectionTypeValues || (NetHostConnectionTypeValues = {}));
export var NetHostConnectionSubtypeValues;
(function (NetHostConnectionSubtypeValues) {
UNKNOWN: 'unknown',
};
export var NetHostConnectionSubtypeValues = {
/** GPRS. */
NetHostConnectionSubtypeValues["GPRS"] = "gprs";
GPRS: 'gprs',
/** EDGE. */
NetHostConnectionSubtypeValues["EDGE"] = "edge";
EDGE: 'edge',
/** UMTS. */
NetHostConnectionSubtypeValues["UMTS"] = "umts";
UMTS: 'umts',
/** CDMA. */
NetHostConnectionSubtypeValues["CDMA"] = "cdma";
CDMA: 'cdma',
/** EVDO Rel. 0. */
NetHostConnectionSubtypeValues["EVDO_0"] = "evdo_0";
EVDO_0: 'evdo_0',
/** EVDO Rev. A. */
NetHostConnectionSubtypeValues["EVDO_A"] = "evdo_a";
EVDO_A: 'evdo_a',
/** CDMA2000 1XRTT. */
NetHostConnectionSubtypeValues["CDMA2000_1XRTT"] = "cdma2000_1xrtt";
CDMA2000_1XRTT: 'cdma2000_1xrtt',
/** HSDPA. */
NetHostConnectionSubtypeValues["HSDPA"] = "hsdpa";
HSDPA: 'hsdpa',
/** HSUPA. */
NetHostConnectionSubtypeValues["HSUPA"] = "hsupa";
HSUPA: 'hsupa',
/** HSPA. */
NetHostConnectionSubtypeValues["HSPA"] = "hspa";
HSPA: 'hspa',
/** IDEN. */
NetHostConnectionSubtypeValues["IDEN"] = "iden";
IDEN: 'iden',
/** EVDO Rev. B. */
NetHostConnectionSubtypeValues["EVDO_B"] = "evdo_b";
EVDO_B: 'evdo_b',
/** LTE. */
NetHostConnectionSubtypeValues["LTE"] = "lte";
LTE: 'lte',
/** EHRPD. */
NetHostConnectionSubtypeValues["EHRPD"] = "ehrpd";
EHRPD: 'ehrpd',
/** HSPAP. */
NetHostConnectionSubtypeValues["HSPAP"] = "hspap";
HSPAP: 'hspap',
/** GSM. */
NetHostConnectionSubtypeValues["GSM"] = "gsm";
GSM: 'gsm',
/** TD-SCDMA. */
NetHostConnectionSubtypeValues["TD_SCDMA"] = "td_scdma";
TD_SCDMA: 'td_scdma',
/** IWLAN. */
NetHostConnectionSubtypeValues["IWLAN"] = "iwlan";
IWLAN: 'iwlan',
/** 5G NR (New Radio). */
NetHostConnectionSubtypeValues["NR"] = "nr";
NR: 'nr',
/** 5G NRNSA (New Radio Non-Standalone). */
NetHostConnectionSubtypeValues["NRNSA"] = "nrnsa";
NRNSA: 'nrnsa',
/** LTE CA. */
NetHostConnectionSubtypeValues["LTE_CA"] = "lte_ca";
})(NetHostConnectionSubtypeValues || (NetHostConnectionSubtypeValues = {}));
export var HttpFlavorValues;
(function (HttpFlavorValues) {
LTE_CA: 'lte_ca',
};
export var HttpFlavorValues = {
/** HTTP 1.0. */
HttpFlavorValues["HTTP_1_0"] = "1.0";
HTTP_1_0: '1.0',
/** HTTP 1.1. */
HttpFlavorValues["HTTP_1_1"] = "1.1";
HTTP_1_1: '1.1',
/** HTTP 2. */
HttpFlavorValues["HTTP_2_0"] = "2.0";
HTTP_2_0: '2.0',
/** SPDY protocol. */
HttpFlavorValues["SPDY"] = "SPDY";
SPDY: 'SPDY',
/** QUIC protocol. */
HttpFlavorValues["QUIC"] = "QUIC";
})(HttpFlavorValues || (HttpFlavorValues = {}));
export var MessagingDestinationKindValues;
(function (MessagingDestinationKindValues) {
QUIC: 'QUIC',
};
export var MessagingDestinationKindValues = {
/** A message sent to a queue. */
MessagingDestinationKindValues["QUEUE"] = "queue";
QUEUE: 'queue',
/** A message sent to a topic. */
MessagingDestinationKindValues["TOPIC"] = "topic";
})(MessagingDestinationKindValues || (MessagingDestinationKindValues = {}));
export var MessagingOperationValues;
(function (MessagingOperationValues) {
TOPIC: 'topic',
};
export var MessagingOperationValues = {
/** receive. */
MessagingOperationValues["RECEIVE"] = "receive";
RECEIVE: 'receive',
/** process. */
MessagingOperationValues["PROCESS"] = "process";
})(MessagingOperationValues || (MessagingOperationValues = {}));
export var RpcGrpcStatusCodeValues;
(function (RpcGrpcStatusCodeValues) {
PROCESS: 'process',
};
export var RpcGrpcStatusCodeValues = {
/** OK. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["OK"] = 0] = "OK";
OK: 0,
/** CANCELLED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["CANCELLED"] = 1] = "CANCELLED";
CANCELLED: 1,
/** UNKNOWN. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["UNKNOWN"] = 2] = "UNKNOWN";
UNKNOWN: 2,
/** INVALID_ARGUMENT. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["INVALID_ARGUMENT"] = 3] = "INVALID_ARGUMENT";
INVALID_ARGUMENT: 3,
/** DEADLINE_EXCEEDED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["DEADLINE_EXCEEDED"] = 4] = "DEADLINE_EXCEEDED";
DEADLINE_EXCEEDED: 4,
/** NOT_FOUND. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["NOT_FOUND"] = 5] = "NOT_FOUND";
NOT_FOUND: 5,
/** ALREADY_EXISTS. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["ALREADY_EXISTS"] = 6] = "ALREADY_EXISTS";
ALREADY_EXISTS: 6,
/** PERMISSION_DENIED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["PERMISSION_DENIED"] = 7] = "PERMISSION_DENIED";
PERMISSION_DENIED: 7,
/** RESOURCE_EXHAUSTED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["RESOURCE_EXHAUSTED"] = 8] = "RESOURCE_EXHAUSTED";
RESOURCE_EXHAUSTED: 8,
/** FAILED_PRECONDITION. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["FAILED_PRECONDITION"] = 9] = "FAILED_PRECONDITION";
FAILED_PRECONDITION: 9,
/** ABORTED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["ABORTED"] = 10] = "ABORTED";
ABORTED: 10,
/** OUT_OF_RANGE. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["OUT_OF_RANGE"] = 11] = "OUT_OF_RANGE";
OUT_OF_RANGE: 11,
/** UNIMPLEMENTED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["UNIMPLEMENTED"] = 12] = "UNIMPLEMENTED";
UNIMPLEMENTED: 12,
/** INTERNAL. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["INTERNAL"] = 13] = "INTERNAL";
INTERNAL: 13,
/** UNAVAILABLE. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["UNAVAILABLE"] = 14] = "UNAVAILABLE";
UNAVAILABLE: 14,
/** DATA_LOSS. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["DATA_LOSS"] = 15] = "DATA_LOSS";
DATA_LOSS: 15,
/** UNAUTHENTICATED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["UNAUTHENTICATED"] = 16] = "UNAUTHENTICATED";
})(RpcGrpcStatusCodeValues || (RpcGrpcStatusCodeValues = {}));
UNAUTHENTICATED: 16,
};
export var MessageTypeValues = {
/** sent. */
SENT: 'SENT',
/** received. */
RECEIVED: 'RECEIVED',
};
//# sourceMappingURL=SemanticAttributes.js.map

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

export declare const VERSION = "1.0.0";
export declare const VERSION = "1.0.1";
//# sourceMappingURL=version.d.ts.map

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

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

@@ -380,116 +380,122 @@ export declare const SemanticResourceAttributes: {

};
export declare enum CloudProviderValues {
export declare const CloudProviderValues: {
/** Alibaba Cloud. */
ALIBABA_CLOUD = "alibaba_cloud",
readonly ALIBABA_CLOUD: "alibaba_cloud";
/** Amazon Web Services. */
AWS = "aws",
readonly AWS: "aws";
/** Microsoft Azure. */
AZURE = "azure",
readonly AZURE: "azure";
/** Google Cloud Platform. */
GCP = "gcp"
}
export declare enum CloudPlatformValues {
readonly GCP: "gcp";
};
export declare type CloudProviderValues = typeof CloudProviderValues[keyof typeof CloudProviderValues];
export declare const CloudPlatformValues: {
/** Alibaba Cloud Elastic Compute Service. */
ALIBABA_CLOUD_ECS = "alibaba_cloud_ecs",
readonly ALIBABA_CLOUD_ECS: "alibaba_cloud_ecs";
/** Alibaba Cloud Function Compute. */
ALIBABA_CLOUD_FC = "alibaba_cloud_fc",
readonly ALIBABA_CLOUD_FC: "alibaba_cloud_fc";
/** AWS Elastic Compute Cloud. */
AWS_EC2 = "aws_ec2",
readonly AWS_EC2: "aws_ec2";
/** AWS Elastic Container Service. */
AWS_ECS = "aws_ecs",
readonly AWS_ECS: "aws_ecs";
/** AWS Elastic Kubernetes Service. */
AWS_EKS = "aws_eks",
readonly AWS_EKS: "aws_eks";
/** AWS Lambda. */
AWS_LAMBDA = "aws_lambda",
readonly AWS_LAMBDA: "aws_lambda";
/** AWS Elastic Beanstalk. */
AWS_ELASTIC_BEANSTALK = "aws_elastic_beanstalk",
readonly AWS_ELASTIC_BEANSTALK: "aws_elastic_beanstalk";
/** Azure Virtual Machines. */
AZURE_VM = "azure_vm",
readonly AZURE_VM: "azure_vm";
/** Azure Container Instances. */
AZURE_CONTAINER_INSTANCES = "azure_container_instances",
readonly AZURE_CONTAINER_INSTANCES: "azure_container_instances";
/** Azure Kubernetes Service. */
AZURE_AKS = "azure_aks",
readonly AZURE_AKS: "azure_aks";
/** Azure Functions. */
AZURE_FUNCTIONS = "azure_functions",
readonly AZURE_FUNCTIONS: "azure_functions";
/** Azure App Service. */
AZURE_APP_SERVICE = "azure_app_service",
readonly AZURE_APP_SERVICE: "azure_app_service";
/** Google Cloud Compute Engine (GCE). */
GCP_COMPUTE_ENGINE = "gcp_compute_engine",
readonly GCP_COMPUTE_ENGINE: "gcp_compute_engine";
/** Google Cloud Run. */
GCP_CLOUD_RUN = "gcp_cloud_run",
readonly GCP_CLOUD_RUN: "gcp_cloud_run";
/** Google Cloud Kubernetes Engine (GKE). */
GCP_KUBERNETES_ENGINE = "gcp_kubernetes_engine",
readonly GCP_KUBERNETES_ENGINE: "gcp_kubernetes_engine";
/** Google Cloud Functions (GCF). */
GCP_CLOUD_FUNCTIONS = "gcp_cloud_functions",
readonly GCP_CLOUD_FUNCTIONS: "gcp_cloud_functions";
/** Google Cloud App Engine (GAE). */
GCP_APP_ENGINE = "gcp_app_engine"
}
export declare enum AwsEcsLaunchtypeValues {
readonly GCP_APP_ENGINE: "gcp_app_engine";
};
export declare type CloudPlatformValues = typeof CloudPlatformValues[keyof typeof CloudPlatformValues];
export declare const AwsEcsLaunchtypeValues: {
/** ec2. */
EC2 = "ec2",
readonly EC2: "ec2";
/** fargate. */
FARGATE = "fargate"
}
export declare enum HostArchValues {
readonly FARGATE: "fargate";
};
export declare type AwsEcsLaunchtypeValues = typeof AwsEcsLaunchtypeValues[keyof typeof AwsEcsLaunchtypeValues];
export declare const HostArchValues: {
/** AMD64. */
AMD64 = "amd64",
readonly AMD64: "amd64";
/** ARM32. */
ARM32 = "arm32",
readonly ARM32: "arm32";
/** ARM64. */
ARM64 = "arm64",
readonly ARM64: "arm64";
/** Itanium. */
IA64 = "ia64",
readonly IA64: "ia64";
/** 32-bit PowerPC. */
PPC32 = "ppc32",
readonly PPC32: "ppc32";
/** 64-bit PowerPC. */
PPC64 = "ppc64",
readonly PPC64: "ppc64";
/** 32-bit x86. */
X86 = "x86"
}
export declare enum OsTypeValues {
readonly X86: "x86";
};
export declare type HostArchValues = typeof HostArchValues[keyof typeof HostArchValues];
export declare const OsTypeValues: {
/** Microsoft Windows. */
WINDOWS = "windows",
readonly WINDOWS: "windows";
/** Linux. */
LINUX = "linux",
readonly LINUX: "linux";
/** Apple Darwin. */
DARWIN = "darwin",
readonly DARWIN: "darwin";
/** FreeBSD. */
FREEBSD = "freebsd",
readonly FREEBSD: "freebsd";
/** NetBSD. */
NETBSD = "netbsd",
readonly NETBSD: "netbsd";
/** OpenBSD. */
OPENBSD = "openbsd",
readonly OPENBSD: "openbsd";
/** DragonFly BSD. */
DRAGONFLYBSD = "dragonflybsd",
readonly DRAGONFLYBSD: "dragonflybsd";
/** HP-UX (Hewlett Packard Unix). */
HPUX = "hpux",
readonly HPUX: "hpux";
/** AIX (Advanced Interactive eXecutive). */
AIX = "aix",
readonly AIX: "aix";
/** Oracle Solaris. */
SOLARIS = "solaris",
readonly SOLARIS: "solaris";
/** IBM z/OS. */
Z_OS = "z_os"
}
export declare enum TelemetrySdkLanguageValues {
readonly Z_OS: "z_os";
};
export declare type OsTypeValues = typeof OsTypeValues[keyof typeof OsTypeValues];
export declare const TelemetrySdkLanguageValues: {
/** cpp. */
CPP = "cpp",
readonly CPP: "cpp";
/** dotnet. */
DOTNET = "dotnet",
readonly DOTNET: "dotnet";
/** erlang. */
ERLANG = "erlang",
readonly ERLANG: "erlang";
/** go. */
GO = "go",
readonly GO: "go";
/** java. */
JAVA = "java",
readonly JAVA: "java";
/** nodejs. */
NODEJS = "nodejs",
readonly NODEJS: "nodejs";
/** php. */
PHP = "php",
readonly PHP: "php";
/** python. */
PYTHON = "python",
readonly PYTHON: "python";
/** ruby. */
RUBY = "ruby",
readonly RUBY: "ruby";
/** webjs. */
WEBJS = "webjs"
}
readonly WEBJS: "webjs";
};
export declare type TelemetrySdkLanguageValues = typeof TelemetrySdkLanguageValues[keyof typeof TelemetrySdkLanguageValues];
//# sourceMappingURL=SemanticResourceAttributes.d.ts.map

@@ -399,123 +399,116 @@ "use strict";

};
// Enum definitions
var CloudProviderValues;
(function (CloudProviderValues) {
exports.CloudProviderValues = {
/** Alibaba Cloud. */
CloudProviderValues["ALIBABA_CLOUD"] = "alibaba_cloud";
ALIBABA_CLOUD: 'alibaba_cloud',
/** Amazon Web Services. */
CloudProviderValues["AWS"] = "aws";
AWS: 'aws',
/** Microsoft Azure. */
CloudProviderValues["AZURE"] = "azure";
AZURE: 'azure',
/** Google Cloud Platform. */
CloudProviderValues["GCP"] = "gcp";
})(CloudProviderValues = exports.CloudProviderValues || (exports.CloudProviderValues = {}));
var CloudPlatformValues;
(function (CloudPlatformValues) {
GCP: 'gcp',
};
exports.CloudPlatformValues = {
/** Alibaba Cloud Elastic Compute Service. */
CloudPlatformValues["ALIBABA_CLOUD_ECS"] = "alibaba_cloud_ecs";
ALIBABA_CLOUD_ECS: 'alibaba_cloud_ecs',
/** Alibaba Cloud Function Compute. */
CloudPlatformValues["ALIBABA_CLOUD_FC"] = "alibaba_cloud_fc";
ALIBABA_CLOUD_FC: 'alibaba_cloud_fc',
/** AWS Elastic Compute Cloud. */
CloudPlatformValues["AWS_EC2"] = "aws_ec2";
AWS_EC2: 'aws_ec2',
/** AWS Elastic Container Service. */
CloudPlatformValues["AWS_ECS"] = "aws_ecs";
AWS_ECS: 'aws_ecs',
/** AWS Elastic Kubernetes Service. */
CloudPlatformValues["AWS_EKS"] = "aws_eks";
AWS_EKS: 'aws_eks',
/** AWS Lambda. */
CloudPlatformValues["AWS_LAMBDA"] = "aws_lambda";
AWS_LAMBDA: 'aws_lambda',
/** AWS Elastic Beanstalk. */
CloudPlatformValues["AWS_ELASTIC_BEANSTALK"] = "aws_elastic_beanstalk";
AWS_ELASTIC_BEANSTALK: 'aws_elastic_beanstalk',
/** Azure Virtual Machines. */
CloudPlatformValues["AZURE_VM"] = "azure_vm";
AZURE_VM: 'azure_vm',
/** Azure Container Instances. */
CloudPlatformValues["AZURE_CONTAINER_INSTANCES"] = "azure_container_instances";
AZURE_CONTAINER_INSTANCES: 'azure_container_instances',
/** Azure Kubernetes Service. */
CloudPlatformValues["AZURE_AKS"] = "azure_aks";
AZURE_AKS: 'azure_aks',
/** Azure Functions. */
CloudPlatformValues["AZURE_FUNCTIONS"] = "azure_functions";
AZURE_FUNCTIONS: 'azure_functions',
/** Azure App Service. */
CloudPlatformValues["AZURE_APP_SERVICE"] = "azure_app_service";
AZURE_APP_SERVICE: 'azure_app_service',
/** Google Cloud Compute Engine (GCE). */
CloudPlatformValues["GCP_COMPUTE_ENGINE"] = "gcp_compute_engine";
GCP_COMPUTE_ENGINE: 'gcp_compute_engine',
/** Google Cloud Run. */
CloudPlatformValues["GCP_CLOUD_RUN"] = "gcp_cloud_run";
GCP_CLOUD_RUN: 'gcp_cloud_run',
/** Google Cloud Kubernetes Engine (GKE). */
CloudPlatformValues["GCP_KUBERNETES_ENGINE"] = "gcp_kubernetes_engine";
GCP_KUBERNETES_ENGINE: 'gcp_kubernetes_engine',
/** Google Cloud Functions (GCF). */
CloudPlatformValues["GCP_CLOUD_FUNCTIONS"] = "gcp_cloud_functions";
GCP_CLOUD_FUNCTIONS: 'gcp_cloud_functions',
/** Google Cloud App Engine (GAE). */
CloudPlatformValues["GCP_APP_ENGINE"] = "gcp_app_engine";
})(CloudPlatformValues = exports.CloudPlatformValues || (exports.CloudPlatformValues = {}));
var AwsEcsLaunchtypeValues;
(function (AwsEcsLaunchtypeValues) {
GCP_APP_ENGINE: 'gcp_app_engine',
};
exports.AwsEcsLaunchtypeValues = {
/** ec2. */
AwsEcsLaunchtypeValues["EC2"] = "ec2";
EC2: 'ec2',
/** fargate. */
AwsEcsLaunchtypeValues["FARGATE"] = "fargate";
})(AwsEcsLaunchtypeValues = exports.AwsEcsLaunchtypeValues || (exports.AwsEcsLaunchtypeValues = {}));
var HostArchValues;
(function (HostArchValues) {
FARGATE: 'fargate',
};
exports.HostArchValues = {
/** AMD64. */
HostArchValues["AMD64"] = "amd64";
AMD64: 'amd64',
/** ARM32. */
HostArchValues["ARM32"] = "arm32";
ARM32: 'arm32',
/** ARM64. */
HostArchValues["ARM64"] = "arm64";
ARM64: 'arm64',
/** Itanium. */
HostArchValues["IA64"] = "ia64";
IA64: 'ia64',
/** 32-bit PowerPC. */
HostArchValues["PPC32"] = "ppc32";
PPC32: 'ppc32',
/** 64-bit PowerPC. */
HostArchValues["PPC64"] = "ppc64";
PPC64: 'ppc64',
/** 32-bit x86. */
HostArchValues["X86"] = "x86";
})(HostArchValues = exports.HostArchValues || (exports.HostArchValues = {}));
var OsTypeValues;
(function (OsTypeValues) {
X86: 'x86',
};
exports.OsTypeValues = {
/** Microsoft Windows. */
OsTypeValues["WINDOWS"] = "windows";
WINDOWS: 'windows',
/** Linux. */
OsTypeValues["LINUX"] = "linux";
LINUX: 'linux',
/** Apple Darwin. */
OsTypeValues["DARWIN"] = "darwin";
DARWIN: 'darwin',
/** FreeBSD. */
OsTypeValues["FREEBSD"] = "freebsd";
FREEBSD: 'freebsd',
/** NetBSD. */
OsTypeValues["NETBSD"] = "netbsd";
NETBSD: 'netbsd',
/** OpenBSD. */
OsTypeValues["OPENBSD"] = "openbsd";
OPENBSD: 'openbsd',
/** DragonFly BSD. */
OsTypeValues["DRAGONFLYBSD"] = "dragonflybsd";
DRAGONFLYBSD: 'dragonflybsd',
/** HP-UX (Hewlett Packard Unix). */
OsTypeValues["HPUX"] = "hpux";
HPUX: 'hpux',
/** AIX (Advanced Interactive eXecutive). */
OsTypeValues["AIX"] = "aix";
AIX: 'aix',
/** Oracle Solaris. */
OsTypeValues["SOLARIS"] = "solaris";
SOLARIS: 'solaris',
/** IBM z/OS. */
OsTypeValues["Z_OS"] = "z_os";
})(OsTypeValues = exports.OsTypeValues || (exports.OsTypeValues = {}));
var TelemetrySdkLanguageValues;
(function (TelemetrySdkLanguageValues) {
Z_OS: 'z_os',
};
exports.TelemetrySdkLanguageValues = {
/** cpp. */
TelemetrySdkLanguageValues["CPP"] = "cpp";
CPP: 'cpp',
/** dotnet. */
TelemetrySdkLanguageValues["DOTNET"] = "dotnet";
DOTNET: 'dotnet',
/** erlang. */
TelemetrySdkLanguageValues["ERLANG"] = "erlang";
ERLANG: 'erlang',
/** go. */
TelemetrySdkLanguageValues["GO"] = "go";
GO: 'go',
/** java. */
TelemetrySdkLanguageValues["JAVA"] = "java";
JAVA: 'java',
/** nodejs. */
TelemetrySdkLanguageValues["NODEJS"] = "nodejs";
NODEJS: 'nodejs',
/** php. */
TelemetrySdkLanguageValues["PHP"] = "php";
PHP: 'php',
/** python. */
TelemetrySdkLanguageValues["PYTHON"] = "python";
PYTHON: 'python',
/** ruby. */
TelemetrySdkLanguageValues["RUBY"] = "ruby";
RUBY: 'ruby',
/** webjs. */
TelemetrySdkLanguageValues["WEBJS"] = "webjs";
})(TelemetrySdkLanguageValues = exports.TelemetrySdkLanguageValues || (exports.TelemetrySdkLanguageValues = {}));
WEBJS: 'webjs',
};
//# sourceMappingURL=SemanticResourceAttributes.js.map

@@ -294,3 +294,5 @@ export declare const SemanticAttributes: {

/**
* The value of the [HTTP host header](https://tools.ietf.org/html/rfc7230#section-5.4). When the header is empty or not present, this attribute should be the same.
* The value of the [HTTP host header](https://tools.ietf.org/html/rfc7230#section-5.4). An empty Host header should also be reported, see note.
*
* Note: When the header is present but empty the attribute SHOULD be set to the empty string. Note that this is a valid situation that is expected in certain cases, according the aforementioned [section of RFC 7230](https://tools.ietf.org/html/rfc7230#section-5.4). When the header is not set the attribute MUST NOT be set.
*/

@@ -345,3 +347,13 @@ HTTP_HOST: string;

*
* Note: This is not necessarily the same as `net.peer.ip`, which would identify the network-level peer, which may be a proxy.
* Note: This is not necessarily the same as `net.peer.ip`, which would
identify the network-level peer, which may be a proxy.
This attribute should be set when a source of information different
from the one used for `net.peer.ip`, is available even if that other
source just confirms the same value as `net.peer.ip`.
Rationale: For `net.peer.ip`, one typically does not know if it
comes from a proxy, reverse proxy, or the actual client. Setting
`http.client_ip` when it's the same as `net.peer.ip` means that
one is at least somewhat confident that the address is not that of
the closest proxy.
*/

@@ -486,2 +498,6 @@ HTTP_CLIENT_IP: string;

/**
* The identifier for the consumer receiving a message. For Kafka, set it to `{messaging.kafka.consumer_group} - {messaging.kafka.client_id}`, if both are present, or only `messaging.kafka.consumer_group`. For brokers, such as RabbitMQ and Artemis, set it to the `client_id` of the client consuming the message.
*/
MESSAGING_CONSUMER_ID: string;
/**
* RabbitMQ message routing key.

@@ -548,285 +564,322 @@ */

RPC_JSONRPC_ERROR_MESSAGE: string;
/**
* Whether this is a received or sent message.
*/
MESSAGE_TYPE: string;
/**
* MUST be calculated as two different counters starting from `1` one for sent messages and one for received message.
*
* Note: This way we guarantee that the values will be consistent between different implementations.
*/
MESSAGE_ID: string;
/**
* Compressed size of the message in bytes.
*/
MESSAGE_COMPRESSED_SIZE: string;
/**
* Uncompressed size of the message in bytes.
*/
MESSAGE_UNCOMPRESSED_SIZE: string;
};
export declare enum DbSystemValues {
export declare const DbSystemValues: {
/** Some other SQL database. Fallback only. See notes. */
OTHER_SQL = "other_sql",
readonly OTHER_SQL: "other_sql";
/** Microsoft SQL Server. */
MSSQL = "mssql",
readonly MSSQL: "mssql";
/** MySQL. */
MYSQL = "mysql",
readonly MYSQL: "mysql";
/** Oracle Database. */
ORACLE = "oracle",
readonly ORACLE: "oracle";
/** IBM Db2. */
DB2 = "db2",
readonly DB2: "db2";
/** PostgreSQL. */
POSTGRESQL = "postgresql",
readonly POSTGRESQL: "postgresql";
/** Amazon Redshift. */
REDSHIFT = "redshift",
readonly REDSHIFT: "redshift";
/** Apache Hive. */
HIVE = "hive",
readonly HIVE: "hive";
/** Cloudscape. */
CLOUDSCAPE = "cloudscape",
readonly CLOUDSCAPE: "cloudscape";
/** HyperSQL DataBase. */
HSQLDB = "hsqldb",
readonly HSQLDB: "hsqldb";
/** Progress Database. */
PROGRESS = "progress",
readonly PROGRESS: "progress";
/** SAP MaxDB. */
MAXDB = "maxdb",
readonly MAXDB: "maxdb";
/** SAP HANA. */
HANADB = "hanadb",
readonly HANADB: "hanadb";
/** Ingres. */
INGRES = "ingres",
readonly INGRES: "ingres";
/** FirstSQL. */
FIRSTSQL = "firstsql",
readonly FIRSTSQL: "firstsql";
/** EnterpriseDB. */
EDB = "edb",
readonly EDB: "edb";
/** InterSystems Caché. */
CACHE = "cache",
readonly CACHE: "cache";
/** Adabas (Adaptable Database System). */
ADABAS = "adabas",
readonly ADABAS: "adabas";
/** Firebird. */
FIREBIRD = "firebird",
readonly FIREBIRD: "firebird";
/** Apache Derby. */
DERBY = "derby",
readonly DERBY: "derby";
/** FileMaker. */
FILEMAKER = "filemaker",
readonly FILEMAKER: "filemaker";
/** Informix. */
INFORMIX = "informix",
readonly INFORMIX: "informix";
/** InstantDB. */
INSTANTDB = "instantdb",
readonly INSTANTDB: "instantdb";
/** InterBase. */
INTERBASE = "interbase",
readonly INTERBASE: "interbase";
/** MariaDB. */
MARIADB = "mariadb",
readonly MARIADB: "mariadb";
/** Netezza. */
NETEZZA = "netezza",
readonly NETEZZA: "netezza";
/** Pervasive PSQL. */
PERVASIVE = "pervasive",
readonly PERVASIVE: "pervasive";
/** PointBase. */
POINTBASE = "pointbase",
readonly POINTBASE: "pointbase";
/** SQLite. */
SQLITE = "sqlite",
readonly SQLITE: "sqlite";
/** Sybase. */
SYBASE = "sybase",
readonly SYBASE: "sybase";
/** Teradata. */
TERADATA = "teradata",
readonly TERADATA: "teradata";
/** Vertica. */
VERTICA = "vertica",
readonly VERTICA: "vertica";
/** H2. */
H2 = "h2",
readonly H2: "h2";
/** ColdFusion IMQ. */
COLDFUSION = "coldfusion",
readonly COLDFUSION: "coldfusion";
/** Apache Cassandra. */
CASSANDRA = "cassandra",
readonly CASSANDRA: "cassandra";
/** Apache HBase. */
HBASE = "hbase",
readonly HBASE: "hbase";
/** MongoDB. */
MONGODB = "mongodb",
readonly MONGODB: "mongodb";
/** Redis. */
REDIS = "redis",
readonly REDIS: "redis";
/** Couchbase. */
COUCHBASE = "couchbase",
readonly COUCHBASE: "couchbase";
/** CouchDB. */
COUCHDB = "couchdb",
readonly COUCHDB: "couchdb";
/** Microsoft Azure Cosmos DB. */
COSMOSDB = "cosmosdb",
readonly COSMOSDB: "cosmosdb";
/** Amazon DynamoDB. */
DYNAMODB = "dynamodb",
readonly DYNAMODB: "dynamodb";
/** Neo4j. */
NEO4J = "neo4j",
readonly NEO4J: "neo4j";
/** Apache Geode. */
GEODE = "geode",
readonly GEODE: "geode";
/** Elasticsearch. */
ELASTICSEARCH = "elasticsearch",
readonly ELASTICSEARCH: "elasticsearch";
/** Memcached. */
MEMCACHED = "memcached",
readonly MEMCACHED: "memcached";
/** CockroachDB. */
COCKROACHDB = "cockroachdb"
}
export declare enum DbCassandraConsistencyLevelValues {
readonly COCKROACHDB: "cockroachdb";
};
export declare type DbSystemValues = typeof DbSystemValues[keyof typeof DbSystemValues];
export declare const DbCassandraConsistencyLevelValues: {
/** all. */
ALL = "all",
readonly ALL: "all";
/** each_quorum. */
EACH_QUORUM = "each_quorum",
readonly EACH_QUORUM: "each_quorum";
/** quorum. */
QUORUM = "quorum",
readonly QUORUM: "quorum";
/** local_quorum. */
LOCAL_QUORUM = "local_quorum",
readonly LOCAL_QUORUM: "local_quorum";
/** one. */
ONE = "one",
readonly ONE: "one";
/** two. */
TWO = "two",
readonly TWO: "two";
/** three. */
THREE = "three",
readonly THREE: "three";
/** local_one. */
LOCAL_ONE = "local_one",
readonly LOCAL_ONE: "local_one";
/** any. */
ANY = "any",
readonly ANY: "any";
/** serial. */
SERIAL = "serial",
readonly SERIAL: "serial";
/** local_serial. */
LOCAL_SERIAL = "local_serial"
}
export declare enum FaasTriggerValues {
readonly LOCAL_SERIAL: "local_serial";
};
export declare type DbCassandraConsistencyLevelValues = typeof DbCassandraConsistencyLevelValues[keyof typeof DbCassandraConsistencyLevelValues];
export declare const FaasTriggerValues: {
/** A response to some data source operation such as a database or filesystem read/write. */
DATASOURCE = "datasource",
readonly DATASOURCE: "datasource";
/** To provide an answer to an inbound HTTP request. */
HTTP = "http",
readonly HTTP: "http";
/** A function is set to be executed when messages are sent to a messaging system. */
PUBSUB = "pubsub",
readonly PUBSUB: "pubsub";
/** A function is scheduled to be executed regularly. */
TIMER = "timer",
readonly TIMER: "timer";
/** If none of the others apply. */
OTHER = "other"
}
export declare enum FaasDocumentOperationValues {
readonly OTHER: "other";
};
export declare type FaasTriggerValues = typeof FaasTriggerValues[keyof typeof FaasTriggerValues];
export declare const FaasDocumentOperationValues: {
/** When a new object is created. */
INSERT = "insert",
readonly INSERT: "insert";
/** When an object is modified. */
EDIT = "edit",
readonly EDIT: "edit";
/** When an object is deleted. */
DELETE = "delete"
}
export declare enum FaasInvokedProviderValues {
readonly DELETE: "delete";
};
export declare type FaasDocumentOperationValues = typeof FaasDocumentOperationValues[keyof typeof FaasDocumentOperationValues];
export declare const FaasInvokedProviderValues: {
/** Alibaba Cloud. */
ALIBABA_CLOUD = "alibaba_cloud",
readonly ALIBABA_CLOUD: "alibaba_cloud";
/** Amazon Web Services. */
AWS = "aws",
readonly AWS: "aws";
/** Microsoft Azure. */
AZURE = "azure",
readonly AZURE: "azure";
/** Google Cloud Platform. */
GCP = "gcp"
}
export declare enum NetTransportValues {
readonly GCP: "gcp";
};
export declare type FaasInvokedProviderValues = typeof FaasInvokedProviderValues[keyof typeof FaasInvokedProviderValues];
export declare const NetTransportValues: {
/** ip_tcp. */
IP_TCP = "ip_tcp",
readonly IP_TCP: "ip_tcp";
/** ip_udp. */
IP_UDP = "ip_udp",
readonly IP_UDP: "ip_udp";
/** Another IP-based protocol. */
IP = "ip",
readonly IP: "ip";
/** Unix Domain socket. See below. */
UNIX = "unix",
readonly UNIX: "unix";
/** Named or anonymous pipe. See note below. */
PIPE = "pipe",
readonly PIPE: "pipe";
/** In-process communication. */
INPROC = "inproc",
readonly INPROC: "inproc";
/** Something else (non IP-based). */
OTHER = "other"
}
export declare enum NetHostConnectionTypeValues {
readonly OTHER: "other";
};
export declare type NetTransportValues = typeof NetTransportValues[keyof typeof NetTransportValues];
export declare const NetHostConnectionTypeValues: {
/** wifi. */
WIFI = "wifi",
readonly WIFI: "wifi";
/** wired. */
WIRED = "wired",
readonly WIRED: "wired";
/** cell. */
CELL = "cell",
readonly CELL: "cell";
/** unavailable. */
UNAVAILABLE = "unavailable",
readonly UNAVAILABLE: "unavailable";
/** unknown. */
UNKNOWN = "unknown"
}
export declare enum NetHostConnectionSubtypeValues {
readonly UNKNOWN: "unknown";
};
export declare type NetHostConnectionTypeValues = typeof NetHostConnectionTypeValues[keyof typeof NetHostConnectionTypeValues];
export declare const NetHostConnectionSubtypeValues: {
/** GPRS. */
GPRS = "gprs",
readonly GPRS: "gprs";
/** EDGE. */
EDGE = "edge",
readonly EDGE: "edge";
/** UMTS. */
UMTS = "umts",
readonly UMTS: "umts";
/** CDMA. */
CDMA = "cdma",
readonly CDMA: "cdma";
/** EVDO Rel. 0. */
EVDO_0 = "evdo_0",
readonly EVDO_0: "evdo_0";
/** EVDO Rev. A. */
EVDO_A = "evdo_a",
readonly EVDO_A: "evdo_a";
/** CDMA2000 1XRTT. */
CDMA2000_1XRTT = "cdma2000_1xrtt",
readonly CDMA2000_1XRTT: "cdma2000_1xrtt";
/** HSDPA. */
HSDPA = "hsdpa",
readonly HSDPA: "hsdpa";
/** HSUPA. */
HSUPA = "hsupa",
readonly HSUPA: "hsupa";
/** HSPA. */
HSPA = "hspa",
readonly HSPA: "hspa";
/** IDEN. */
IDEN = "iden",
readonly IDEN: "iden";
/** EVDO Rev. B. */
EVDO_B = "evdo_b",
readonly EVDO_B: "evdo_b";
/** LTE. */
LTE = "lte",
readonly LTE: "lte";
/** EHRPD. */
EHRPD = "ehrpd",
readonly EHRPD: "ehrpd";
/** HSPAP. */
HSPAP = "hspap",
readonly HSPAP: "hspap";
/** GSM. */
GSM = "gsm",
readonly GSM: "gsm";
/** TD-SCDMA. */
TD_SCDMA = "td_scdma",
readonly TD_SCDMA: "td_scdma";
/** IWLAN. */
IWLAN = "iwlan",
readonly IWLAN: "iwlan";
/** 5G NR (New Radio). */
NR = "nr",
readonly NR: "nr";
/** 5G NRNSA (New Radio Non-Standalone). */
NRNSA = "nrnsa",
readonly NRNSA: "nrnsa";
/** LTE CA. */
LTE_CA = "lte_ca"
}
export declare enum HttpFlavorValues {
readonly LTE_CA: "lte_ca";
};
export declare type NetHostConnectionSubtypeValues = typeof NetHostConnectionSubtypeValues[keyof typeof NetHostConnectionSubtypeValues];
export declare const HttpFlavorValues: {
/** HTTP 1.0. */
HTTP_1_0 = "1.0",
readonly HTTP_1_0: "1.0";
/** HTTP 1.1. */
HTTP_1_1 = "1.1",
readonly HTTP_1_1: "1.1";
/** HTTP 2. */
HTTP_2_0 = "2.0",
readonly HTTP_2_0: "2.0";
/** SPDY protocol. */
SPDY = "SPDY",
readonly SPDY: "SPDY";
/** QUIC protocol. */
QUIC = "QUIC"
}
export declare enum MessagingDestinationKindValues {
readonly QUIC: "QUIC";
};
export declare type HttpFlavorValues = typeof HttpFlavorValues[keyof typeof HttpFlavorValues];
export declare const MessagingDestinationKindValues: {
/** A message sent to a queue. */
QUEUE = "queue",
readonly QUEUE: "queue";
/** A message sent to a topic. */
TOPIC = "topic"
}
export declare enum MessagingOperationValues {
readonly TOPIC: "topic";
};
export declare type MessagingDestinationKindValues = typeof MessagingDestinationKindValues[keyof typeof MessagingDestinationKindValues];
export declare const MessagingOperationValues: {
/** receive. */
RECEIVE = "receive",
readonly RECEIVE: "receive";
/** process. */
PROCESS = "process"
}
export declare enum RpcGrpcStatusCodeValues {
readonly PROCESS: "process";
};
export declare type MessagingOperationValues = typeof MessagingOperationValues[keyof typeof MessagingOperationValues];
export declare const RpcGrpcStatusCodeValues: {
/** OK. */
OK = 0,
readonly OK: 0;
/** CANCELLED. */
CANCELLED = 1,
readonly CANCELLED: 1;
/** UNKNOWN. */
UNKNOWN = 2,
readonly UNKNOWN: 2;
/** INVALID_ARGUMENT. */
INVALID_ARGUMENT = 3,
readonly INVALID_ARGUMENT: 3;
/** DEADLINE_EXCEEDED. */
DEADLINE_EXCEEDED = 4,
readonly DEADLINE_EXCEEDED: 4;
/** NOT_FOUND. */
NOT_FOUND = 5,
readonly NOT_FOUND: 5;
/** ALREADY_EXISTS. */
ALREADY_EXISTS = 6,
readonly ALREADY_EXISTS: 6;
/** PERMISSION_DENIED. */
PERMISSION_DENIED = 7,
readonly PERMISSION_DENIED: 7;
/** RESOURCE_EXHAUSTED. */
RESOURCE_EXHAUSTED = 8,
readonly RESOURCE_EXHAUSTED: 8;
/** FAILED_PRECONDITION. */
FAILED_PRECONDITION = 9,
readonly FAILED_PRECONDITION: 9;
/** ABORTED. */
ABORTED = 10,
readonly ABORTED: 10;
/** OUT_OF_RANGE. */
OUT_OF_RANGE = 11,
readonly OUT_OF_RANGE: 11;
/** UNIMPLEMENTED. */
UNIMPLEMENTED = 12,
readonly UNIMPLEMENTED: 12;
/** INTERNAL. */
INTERNAL = 13,
readonly INTERNAL: 13;
/** UNAVAILABLE. */
UNAVAILABLE = 14,
readonly UNAVAILABLE: 14;
/** DATA_LOSS. */
DATA_LOSS = 15,
readonly DATA_LOSS: 15;
/** UNAUTHENTICATED. */
UNAUTHENTICATED = 16
}
readonly UNAUTHENTICATED: 16;
};
export declare type RpcGrpcStatusCodeValues = typeof RpcGrpcStatusCodeValues[keyof typeof RpcGrpcStatusCodeValues];
export declare const MessageTypeValues: {
/** sent. */
readonly SENT: "SENT";
/** received. */
readonly RECEIVED: "RECEIVED";
};
export declare type MessageTypeValues = typeof MessageTypeValues[keyof typeof MessageTypeValues];
//# sourceMappingURL=SemanticAttributes.d.ts.map

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

Object.defineProperty(exports, "__esModule", { value: true });
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;
exports.MessageTypeValues = 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

@@ -314,3 +314,5 @@ exports.SemanticAttributes = {

/**
* The value of the [HTTP host header](https://tools.ietf.org/html/rfc7230#section-5.4). When the header is empty or not present, this attribute should be the same.
* The value of the [HTTP host header](https://tools.ietf.org/html/rfc7230#section-5.4). An empty Host header should also be reported, see note.
*
* Note: When the header is present but empty the attribute SHOULD be set to the empty string. Note that this is a valid situation that is expected in certain cases, according the aforementioned [section of RFC 7230](https://tools.ietf.org/html/rfc7230#section-5.4). When the header is not set the attribute MUST NOT be set.
*/

@@ -365,3 +367,13 @@ HTTP_HOST: 'http.host',

*
* Note: This is not necessarily the same as `net.peer.ip`, which would identify the network-level peer, which may be a proxy.
* Note: This is not necessarily the same as `net.peer.ip`, which would
identify the network-level peer, which may be a proxy.
This attribute should be set when a source of information different
from the one used for `net.peer.ip`, is available even if that other
source just confirms the same value as `net.peer.ip`.
Rationale: For `net.peer.ip`, one typically does not know if it
comes from a proxy, reverse proxy, or the actual client. Setting
`http.client_ip` when it's the same as `net.peer.ip` means that
one is at least somewhat confident that the address is not that of
the closest proxy.
*/

@@ -506,2 +518,6 @@ HTTP_CLIENT_IP: 'http.client_ip',

/**
* The identifier for the consumer receiving a message. For Kafka, set it to `{messaging.kafka.consumer_group} - {messaging.kafka.client_id}`, if both are present, or only `messaging.kafka.consumer_group`. For brokers, such as RabbitMQ and Artemis, set it to the `client_id` of the client consuming the message.
*/
MESSAGING_CONSUMER_ID: 'messaging.consumer_id',
/**
* RabbitMQ message routing key.

@@ -568,298 +584,309 @@ */

RPC_JSONRPC_ERROR_MESSAGE: 'rpc.jsonrpc.error_message',
/**
* Whether this is a received or sent message.
*/
MESSAGE_TYPE: 'message.type',
/**
* MUST be calculated as two different counters starting from `1` one for sent messages and one for received message.
*
* Note: This way we guarantee that the values will be consistent between different implementations.
*/
MESSAGE_ID: 'message.id',
/**
* Compressed size of the message in bytes.
*/
MESSAGE_COMPRESSED_SIZE: 'message.compressed_size',
/**
* Uncompressed size of the message in bytes.
*/
MESSAGE_UNCOMPRESSED_SIZE: 'message.uncompressed_size',
};
// Enum definitions
var DbSystemValues;
(function (DbSystemValues) {
exports.DbSystemValues = {
/** Some other SQL database. Fallback only. See notes. */
DbSystemValues["OTHER_SQL"] = "other_sql";
OTHER_SQL: 'other_sql',
/** Microsoft SQL Server. */
DbSystemValues["MSSQL"] = "mssql";
MSSQL: 'mssql',
/** MySQL. */
DbSystemValues["MYSQL"] = "mysql";
MYSQL: 'mysql',
/** Oracle Database. */
DbSystemValues["ORACLE"] = "oracle";
ORACLE: 'oracle',
/** IBM Db2. */
DbSystemValues["DB2"] = "db2";
DB2: 'db2',
/** PostgreSQL. */
DbSystemValues["POSTGRESQL"] = "postgresql";
POSTGRESQL: 'postgresql',
/** Amazon Redshift. */
DbSystemValues["REDSHIFT"] = "redshift";
REDSHIFT: 'redshift',
/** Apache Hive. */
DbSystemValues["HIVE"] = "hive";
HIVE: 'hive',
/** Cloudscape. */
DbSystemValues["CLOUDSCAPE"] = "cloudscape";
CLOUDSCAPE: 'cloudscape',
/** HyperSQL DataBase. */
DbSystemValues["HSQLDB"] = "hsqldb";
HSQLDB: 'hsqldb',
/** Progress Database. */
DbSystemValues["PROGRESS"] = "progress";
PROGRESS: 'progress',
/** SAP MaxDB. */
DbSystemValues["MAXDB"] = "maxdb";
MAXDB: 'maxdb',
/** SAP HANA. */
DbSystemValues["HANADB"] = "hanadb";
HANADB: 'hanadb',
/** Ingres. */
DbSystemValues["INGRES"] = "ingres";
INGRES: 'ingres',
/** FirstSQL. */
DbSystemValues["FIRSTSQL"] = "firstsql";
FIRSTSQL: 'firstsql',
/** EnterpriseDB. */
DbSystemValues["EDB"] = "edb";
EDB: 'edb',
/** InterSystems Caché. */
DbSystemValues["CACHE"] = "cache";
CACHE: 'cache',
/** Adabas (Adaptable Database System). */
DbSystemValues["ADABAS"] = "adabas";
ADABAS: 'adabas',
/** Firebird. */
DbSystemValues["FIREBIRD"] = "firebird";
FIREBIRD: 'firebird',
/** Apache Derby. */
DbSystemValues["DERBY"] = "derby";
DERBY: 'derby',
/** FileMaker. */
DbSystemValues["FILEMAKER"] = "filemaker";
FILEMAKER: 'filemaker',
/** Informix. */
DbSystemValues["INFORMIX"] = "informix";
INFORMIX: 'informix',
/** InstantDB. */
DbSystemValues["INSTANTDB"] = "instantdb";
INSTANTDB: 'instantdb',
/** InterBase. */
DbSystemValues["INTERBASE"] = "interbase";
INTERBASE: 'interbase',
/** MariaDB. */
DbSystemValues["MARIADB"] = "mariadb";
MARIADB: 'mariadb',
/** Netezza. */
DbSystemValues["NETEZZA"] = "netezza";
NETEZZA: 'netezza',
/** Pervasive PSQL. */
DbSystemValues["PERVASIVE"] = "pervasive";
PERVASIVE: 'pervasive',
/** PointBase. */
DbSystemValues["POINTBASE"] = "pointbase";
POINTBASE: 'pointbase',
/** SQLite. */
DbSystemValues["SQLITE"] = "sqlite";
SQLITE: 'sqlite',
/** Sybase. */
DbSystemValues["SYBASE"] = "sybase";
SYBASE: 'sybase',
/** Teradata. */
DbSystemValues["TERADATA"] = "teradata";
TERADATA: 'teradata',
/** Vertica. */
DbSystemValues["VERTICA"] = "vertica";
VERTICA: 'vertica',
/** H2. */
DbSystemValues["H2"] = "h2";
H2: 'h2',
/** ColdFusion IMQ. */
DbSystemValues["COLDFUSION"] = "coldfusion";
COLDFUSION: 'coldfusion',
/** Apache Cassandra. */
DbSystemValues["CASSANDRA"] = "cassandra";
CASSANDRA: 'cassandra',
/** Apache HBase. */
DbSystemValues["HBASE"] = "hbase";
HBASE: 'hbase',
/** MongoDB. */
DbSystemValues["MONGODB"] = "mongodb";
MONGODB: 'mongodb',
/** Redis. */
DbSystemValues["REDIS"] = "redis";
REDIS: 'redis',
/** Couchbase. */
DbSystemValues["COUCHBASE"] = "couchbase";
COUCHBASE: 'couchbase',
/** CouchDB. */
DbSystemValues["COUCHDB"] = "couchdb";
COUCHDB: 'couchdb',
/** Microsoft Azure Cosmos DB. */
DbSystemValues["COSMOSDB"] = "cosmosdb";
COSMOSDB: 'cosmosdb',
/** Amazon DynamoDB. */
DbSystemValues["DYNAMODB"] = "dynamodb";
DYNAMODB: 'dynamodb',
/** Neo4j. */
DbSystemValues["NEO4J"] = "neo4j";
NEO4J: 'neo4j',
/** Apache Geode. */
DbSystemValues["GEODE"] = "geode";
GEODE: 'geode',
/** Elasticsearch. */
DbSystemValues["ELASTICSEARCH"] = "elasticsearch";
ELASTICSEARCH: 'elasticsearch',
/** Memcached. */
DbSystemValues["MEMCACHED"] = "memcached";
MEMCACHED: 'memcached',
/** CockroachDB. */
DbSystemValues["COCKROACHDB"] = "cockroachdb";
})(DbSystemValues = exports.DbSystemValues || (exports.DbSystemValues = {}));
var DbCassandraConsistencyLevelValues;
(function (DbCassandraConsistencyLevelValues) {
COCKROACHDB: 'cockroachdb',
};
exports.DbCassandraConsistencyLevelValues = {
/** all. */
DbCassandraConsistencyLevelValues["ALL"] = "all";
ALL: 'all',
/** each_quorum. */
DbCassandraConsistencyLevelValues["EACH_QUORUM"] = "each_quorum";
EACH_QUORUM: 'each_quorum',
/** quorum. */
DbCassandraConsistencyLevelValues["QUORUM"] = "quorum";
QUORUM: 'quorum',
/** local_quorum. */
DbCassandraConsistencyLevelValues["LOCAL_QUORUM"] = "local_quorum";
LOCAL_QUORUM: 'local_quorum',
/** one. */
DbCassandraConsistencyLevelValues["ONE"] = "one";
ONE: 'one',
/** two. */
DbCassandraConsistencyLevelValues["TWO"] = "two";
TWO: 'two',
/** three. */
DbCassandraConsistencyLevelValues["THREE"] = "three";
THREE: 'three',
/** local_one. */
DbCassandraConsistencyLevelValues["LOCAL_ONE"] = "local_one";
LOCAL_ONE: 'local_one',
/** any. */
DbCassandraConsistencyLevelValues["ANY"] = "any";
ANY: 'any',
/** serial. */
DbCassandraConsistencyLevelValues["SERIAL"] = "serial";
SERIAL: 'serial',
/** local_serial. */
DbCassandraConsistencyLevelValues["LOCAL_SERIAL"] = "local_serial";
})(DbCassandraConsistencyLevelValues = exports.DbCassandraConsistencyLevelValues || (exports.DbCassandraConsistencyLevelValues = {}));
var FaasTriggerValues;
(function (FaasTriggerValues) {
LOCAL_SERIAL: 'local_serial',
};
exports.FaasTriggerValues = {
/** A response to some data source operation such as a database or filesystem read/write. */
FaasTriggerValues["DATASOURCE"] = "datasource";
DATASOURCE: 'datasource',
/** To provide an answer to an inbound HTTP request. */
FaasTriggerValues["HTTP"] = "http";
HTTP: 'http',
/** A function is set to be executed when messages are sent to a messaging system. */
FaasTriggerValues["PUBSUB"] = "pubsub";
PUBSUB: 'pubsub',
/** A function is scheduled to be executed regularly. */
FaasTriggerValues["TIMER"] = "timer";
TIMER: 'timer',
/** If none of the others apply. */
FaasTriggerValues["OTHER"] = "other";
})(FaasTriggerValues = exports.FaasTriggerValues || (exports.FaasTriggerValues = {}));
var FaasDocumentOperationValues;
(function (FaasDocumentOperationValues) {
OTHER: 'other',
};
exports.FaasDocumentOperationValues = {
/** When a new object is created. */
FaasDocumentOperationValues["INSERT"] = "insert";
INSERT: 'insert',
/** When an object is modified. */
FaasDocumentOperationValues["EDIT"] = "edit";
EDIT: 'edit',
/** When an object is deleted. */
FaasDocumentOperationValues["DELETE"] = "delete";
})(FaasDocumentOperationValues = exports.FaasDocumentOperationValues || (exports.FaasDocumentOperationValues = {}));
var FaasInvokedProviderValues;
(function (FaasInvokedProviderValues) {
DELETE: 'delete',
};
exports.FaasInvokedProviderValues = {
/** Alibaba Cloud. */
FaasInvokedProviderValues["ALIBABA_CLOUD"] = "alibaba_cloud";
ALIBABA_CLOUD: 'alibaba_cloud',
/** Amazon Web Services. */
FaasInvokedProviderValues["AWS"] = "aws";
AWS: 'aws',
/** Microsoft Azure. */
FaasInvokedProviderValues["AZURE"] = "azure";
AZURE: 'azure',
/** Google Cloud Platform. */
FaasInvokedProviderValues["GCP"] = "gcp";
})(FaasInvokedProviderValues = exports.FaasInvokedProviderValues || (exports.FaasInvokedProviderValues = {}));
var NetTransportValues;
(function (NetTransportValues) {
GCP: 'gcp',
};
exports.NetTransportValues = {
/** ip_tcp. */
NetTransportValues["IP_TCP"] = "ip_tcp";
IP_TCP: 'ip_tcp',
/** ip_udp. */
NetTransportValues["IP_UDP"] = "ip_udp";
IP_UDP: 'ip_udp',
/** Another IP-based protocol. */
NetTransportValues["IP"] = "ip";
IP: 'ip',
/** Unix Domain socket. See below. */
NetTransportValues["UNIX"] = "unix";
UNIX: 'unix',
/** Named or anonymous pipe. See note below. */
NetTransportValues["PIPE"] = "pipe";
PIPE: 'pipe',
/** In-process communication. */
NetTransportValues["INPROC"] = "inproc";
INPROC: 'inproc',
/** Something else (non IP-based). */
NetTransportValues["OTHER"] = "other";
})(NetTransportValues = exports.NetTransportValues || (exports.NetTransportValues = {}));
var NetHostConnectionTypeValues;
(function (NetHostConnectionTypeValues) {
OTHER: 'other',
};
exports.NetHostConnectionTypeValues = {
/** wifi. */
NetHostConnectionTypeValues["WIFI"] = "wifi";
WIFI: 'wifi',
/** wired. */
NetHostConnectionTypeValues["WIRED"] = "wired";
WIRED: 'wired',
/** cell. */
NetHostConnectionTypeValues["CELL"] = "cell";
CELL: 'cell',
/** unavailable. */
NetHostConnectionTypeValues["UNAVAILABLE"] = "unavailable";
UNAVAILABLE: 'unavailable',
/** unknown. */
NetHostConnectionTypeValues["UNKNOWN"] = "unknown";
})(NetHostConnectionTypeValues = exports.NetHostConnectionTypeValues || (exports.NetHostConnectionTypeValues = {}));
var NetHostConnectionSubtypeValues;
(function (NetHostConnectionSubtypeValues) {
UNKNOWN: 'unknown',
};
exports.NetHostConnectionSubtypeValues = {
/** GPRS. */
NetHostConnectionSubtypeValues["GPRS"] = "gprs";
GPRS: 'gprs',
/** EDGE. */
NetHostConnectionSubtypeValues["EDGE"] = "edge";
EDGE: 'edge',
/** UMTS. */
NetHostConnectionSubtypeValues["UMTS"] = "umts";
UMTS: 'umts',
/** CDMA. */
NetHostConnectionSubtypeValues["CDMA"] = "cdma";
CDMA: 'cdma',
/** EVDO Rel. 0. */
NetHostConnectionSubtypeValues["EVDO_0"] = "evdo_0";
EVDO_0: 'evdo_0',
/** EVDO Rev. A. */
NetHostConnectionSubtypeValues["EVDO_A"] = "evdo_a";
EVDO_A: 'evdo_a',
/** CDMA2000 1XRTT. */
NetHostConnectionSubtypeValues["CDMA2000_1XRTT"] = "cdma2000_1xrtt";
CDMA2000_1XRTT: 'cdma2000_1xrtt',
/** HSDPA. */
NetHostConnectionSubtypeValues["HSDPA"] = "hsdpa";
HSDPA: 'hsdpa',
/** HSUPA. */
NetHostConnectionSubtypeValues["HSUPA"] = "hsupa";
HSUPA: 'hsupa',
/** HSPA. */
NetHostConnectionSubtypeValues["HSPA"] = "hspa";
HSPA: 'hspa',
/** IDEN. */
NetHostConnectionSubtypeValues["IDEN"] = "iden";
IDEN: 'iden',
/** EVDO Rev. B. */
NetHostConnectionSubtypeValues["EVDO_B"] = "evdo_b";
EVDO_B: 'evdo_b',
/** LTE. */
NetHostConnectionSubtypeValues["LTE"] = "lte";
LTE: 'lte',
/** EHRPD. */
NetHostConnectionSubtypeValues["EHRPD"] = "ehrpd";
EHRPD: 'ehrpd',
/** HSPAP. */
NetHostConnectionSubtypeValues["HSPAP"] = "hspap";
HSPAP: 'hspap',
/** GSM. */
NetHostConnectionSubtypeValues["GSM"] = "gsm";
GSM: 'gsm',
/** TD-SCDMA. */
NetHostConnectionSubtypeValues["TD_SCDMA"] = "td_scdma";
TD_SCDMA: 'td_scdma',
/** IWLAN. */
NetHostConnectionSubtypeValues["IWLAN"] = "iwlan";
IWLAN: 'iwlan',
/** 5G NR (New Radio). */
NetHostConnectionSubtypeValues["NR"] = "nr";
NR: 'nr',
/** 5G NRNSA (New Radio Non-Standalone). */
NetHostConnectionSubtypeValues["NRNSA"] = "nrnsa";
NRNSA: 'nrnsa',
/** LTE CA. */
NetHostConnectionSubtypeValues["LTE_CA"] = "lte_ca";
})(NetHostConnectionSubtypeValues = exports.NetHostConnectionSubtypeValues || (exports.NetHostConnectionSubtypeValues = {}));
var HttpFlavorValues;
(function (HttpFlavorValues) {
LTE_CA: 'lte_ca',
};
exports.HttpFlavorValues = {
/** HTTP 1.0. */
HttpFlavorValues["HTTP_1_0"] = "1.0";
HTTP_1_0: '1.0',
/** HTTP 1.1. */
HttpFlavorValues["HTTP_1_1"] = "1.1";
HTTP_1_1: '1.1',
/** HTTP 2. */
HttpFlavorValues["HTTP_2_0"] = "2.0";
HTTP_2_0: '2.0',
/** SPDY protocol. */
HttpFlavorValues["SPDY"] = "SPDY";
SPDY: 'SPDY',
/** QUIC protocol. */
HttpFlavorValues["QUIC"] = "QUIC";
})(HttpFlavorValues = exports.HttpFlavorValues || (exports.HttpFlavorValues = {}));
var MessagingDestinationKindValues;
(function (MessagingDestinationKindValues) {
QUIC: 'QUIC',
};
exports.MessagingDestinationKindValues = {
/** A message sent to a queue. */
MessagingDestinationKindValues["QUEUE"] = "queue";
QUEUE: 'queue',
/** A message sent to a topic. */
MessagingDestinationKindValues["TOPIC"] = "topic";
})(MessagingDestinationKindValues = exports.MessagingDestinationKindValues || (exports.MessagingDestinationKindValues = {}));
var MessagingOperationValues;
(function (MessagingOperationValues) {
TOPIC: 'topic',
};
exports.MessagingOperationValues = {
/** receive. */
MessagingOperationValues["RECEIVE"] = "receive";
RECEIVE: 'receive',
/** process. */
MessagingOperationValues["PROCESS"] = "process";
})(MessagingOperationValues = exports.MessagingOperationValues || (exports.MessagingOperationValues = {}));
var RpcGrpcStatusCodeValues;
(function (RpcGrpcStatusCodeValues) {
PROCESS: 'process',
};
exports.RpcGrpcStatusCodeValues = {
/** OK. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["OK"] = 0] = "OK";
OK: 0,
/** CANCELLED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["CANCELLED"] = 1] = "CANCELLED";
CANCELLED: 1,
/** UNKNOWN. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["UNKNOWN"] = 2] = "UNKNOWN";
UNKNOWN: 2,
/** INVALID_ARGUMENT. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["INVALID_ARGUMENT"] = 3] = "INVALID_ARGUMENT";
INVALID_ARGUMENT: 3,
/** DEADLINE_EXCEEDED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["DEADLINE_EXCEEDED"] = 4] = "DEADLINE_EXCEEDED";
DEADLINE_EXCEEDED: 4,
/** NOT_FOUND. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["NOT_FOUND"] = 5] = "NOT_FOUND";
NOT_FOUND: 5,
/** ALREADY_EXISTS. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["ALREADY_EXISTS"] = 6] = "ALREADY_EXISTS";
ALREADY_EXISTS: 6,
/** PERMISSION_DENIED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["PERMISSION_DENIED"] = 7] = "PERMISSION_DENIED";
PERMISSION_DENIED: 7,
/** RESOURCE_EXHAUSTED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["RESOURCE_EXHAUSTED"] = 8] = "RESOURCE_EXHAUSTED";
RESOURCE_EXHAUSTED: 8,
/** FAILED_PRECONDITION. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["FAILED_PRECONDITION"] = 9] = "FAILED_PRECONDITION";
FAILED_PRECONDITION: 9,
/** ABORTED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["ABORTED"] = 10] = "ABORTED";
ABORTED: 10,
/** OUT_OF_RANGE. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["OUT_OF_RANGE"] = 11] = "OUT_OF_RANGE";
OUT_OF_RANGE: 11,
/** UNIMPLEMENTED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["UNIMPLEMENTED"] = 12] = "UNIMPLEMENTED";
UNIMPLEMENTED: 12,
/** INTERNAL. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["INTERNAL"] = 13] = "INTERNAL";
INTERNAL: 13,
/** UNAVAILABLE. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["UNAVAILABLE"] = 14] = "UNAVAILABLE";
UNAVAILABLE: 14,
/** DATA_LOSS. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["DATA_LOSS"] = 15] = "DATA_LOSS";
DATA_LOSS: 15,
/** UNAUTHENTICATED. */
RpcGrpcStatusCodeValues[RpcGrpcStatusCodeValues["UNAUTHENTICATED"] = 16] = "UNAUTHENTICATED";
})(RpcGrpcStatusCodeValues = exports.RpcGrpcStatusCodeValues || (exports.RpcGrpcStatusCodeValues = {}));
UNAUTHENTICATED: 16,
};
exports.MessageTypeValues = {
/** sent. */
SENT: 'SENT',
/** received. */
RECEIVED: 'RECEIVED',
};
//# sourceMappingURL=SemanticAttributes.js.map

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

export declare const VERSION = "1.0.0";
export declare const VERSION = "1.0.1";
//# sourceMappingURL=version.d.ts.map

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

// this is autogenerated file, see scripts/version-update.js
exports.VERSION = '1.0.0';
exports.VERSION = '1.0.1';
//# sourceMappingURL=version.js.map
{
"name": "@opentelemetry/semantic-conventions",
"version": "1.0.0",
"version": "1.0.1",
"description": "OpenTelemetry semantic conventions",

@@ -56,7 +56,7 @@ "main": "build/src/index.js",

"rimraf": "3.0.2",
"sinon": "11.1.2",
"sinon": "12.0.1",
"ts-mocha": "8.0.0",
"typescript": "4.3.5"
},
"gitHead": "69b925d142a4405c7c6bec7deadd8b4e96c7d5d6"
"gitHead": "9cf402ee4231ee1446884b5f59958ceafc1b5188"
}

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