semconv

package
v0.50.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 28, 2022 License: Apache-2.0 Imports: 0 Imported by: 12

Documentation

Index

Constants

View Source
const (
	// Name of the cloud provider.
	//
	// Type: Enum
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudProvider = "cloud.provider"
	// The cloud account ID the resource is assigned to.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '111111111111', 'opentelemetry'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudAccountID = "cloud.account.id"
	// The geographical region the resource is running. Refer to your provider's docs
	// to see the available regions, for example AWS regions, Azure regions, or Google
	// Cloud regions.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'us-central1', 'us-east-1'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudRegion = "cloud.region"
	// Cloud regions often have multiple, isolated locations known as zones to
	// increase availability. Availability zone represents the zone where the resource
	// is running.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'us-east-1c'
	// Note: Availability zones are called "zones" on Google Cloud.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudAvailabilityZone = "cloud.availability_zone"
	// The cloud platform in use.
	//
	// Type: Enum
	// Required: No
	// Stability: stable
	// Note: The prefix of the service SHOULD match the one specified in
	// cloud.provider.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatform = "cloud.platform"
)

A cloud environment (e.g. GCP, Azure, AWS)

View Source
const (
	// Amazon Web Services
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudProviderAWS = "aws"
	// Microsoft Azure
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudProviderAzure = "azure"
	// Google Cloud Platform
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudProviderGCP = "gcp"
)
View Source
const (
	// AWS Elastic Compute Cloud
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformAWSEC2 = "aws_ec2"
	// AWS Elastic Container Service
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformAWSECS = "aws_ecs"
	// AWS Elastic Kubernetes Service
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformAWSEKS = "aws_eks"
	// AWS Lambda
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformAWSLambda = "aws_lambda"
	// AWS Elastic Beanstalk
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformAWSElasticBeanstalk = "aws_elastic_beanstalk"
	// Azure Virtual Machines
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformAzureVM = "azure_vm"
	// Azure Container Instances
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformAzureContainerInstances = "azure_container_instances"
	// Azure Kubernetes Service
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformAzureAKS = "azure_aks"
	// Azure Functions
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformAzureFunctions = "azure_functions"
	// Azure App Service
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformAzureAppService = "azure_app_service"
	// Google Cloud Compute Engine (GCE)
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformGCPComputeEngine = "gcp_compute_engine"
	// Google Cloud Run
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformGCPCloudRun = "gcp_cloud_run"
	// Google Cloud Kubernetes Engine (GKE)
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformGCPKubernetesEngine = "gcp_kubernetes_engine"
	// Google Cloud Functions (GCF)
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformGCPCloudFunctions = "gcp_cloud_functions"
	// Google Cloud App Engine (GAE)
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCloudPlatformGCPAppEngine = "gcp_app_engine"
)
View Source
const (
	// The Amazon Resource Name (ARN) of an ECS container instance.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'arn:aws:ecs:us-
	// west-1:123456789123:container/32624152-9086-4f0e-acae-1a75b14fe4d9'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSECSContainerARN = "aws.ecs.container.arn"
	// The ARN of an ECS cluster.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'arn:aws:ecs:us-west-2:123456789123:cluster/my-cluster'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSECSClusterARN = "aws.ecs.cluster.arn"
	// The launch type for an ECS task.
	//
	// Type: Enum
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSECSLaunchtype = "aws.ecs.launchtype"
	// The ARN of an ECS task definition.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'arn:aws:ecs:us-
	// west-1:123456789123:task/10838bed-421f-43ef-870a-f43feacbbb5b'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSECSTaskARN = "aws.ecs.task.arn"
	// The task definition family this task definition is a member of.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry-family'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSECSTaskFamily = "aws.ecs.task.family"
	// The revision for this task definition.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '8', '26'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSECSTaskRevision = "aws.ecs.task.revision"
)

Resources used by AWS Elastic Container Service (ECS).

View Source
const (
	// ec2
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSECSLaunchtypeEC2 = "ec2"
	// fargate
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSECSLaunchtypeFargate = "fargate"
)
View Source
const (
	// The name(s) of the AWS log group(s) an application is writing to.
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: '/aws/lambda/my-function', 'opentelemetry-service'
	// Note: Multiple log groups must be supported for cases like multi-container
	// applications, where a single application has sidecar containers, and each write
	// to their own log group.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSLogGroupNames = "aws.log.group.names"
	// The Amazon Resource Name(s) (ARN) of the AWS log group(s).
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: 'arn:aws:logs:us-west-1:123456789012:log-group:/aws/my/group:*'
	// Note: See the log group ARN format documentation.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSLogGroupARNs = "aws.log.group.arns"
	// The name(s) of the AWS log stream(s) an application is writing to.
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: 'logs/main/10838bed-421f-43ef-870a-f43feacbbb5b'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSLogStreamNames = "aws.log.stream.names"
	// The ARN(s) of the AWS log stream(s).
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: 'arn:aws:logs:us-west-1:123456789012:log-group:/aws/my/group:log-
	// stream:logs/main/10838bed-421f-43ef-870a-f43feacbbb5b'
	// Note: See the log stream ARN format documentation. One log group can contain
	// several log streams, so these ARNs necessarily identify both a log group and a
	// log stream.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSLogStreamARNs = "aws.log.stream.arns"
)

Resources specific to Amazon Web Services.

View Source
const (
	// Container name.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry-autoconf'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeContainerName = "container.name"
	// Container ID. Usually a UUID, as for example used to identify Docker
	// containers. The UUID might be abbreviated.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'a3bf90e006b2'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeContainerID = "container.id"
	// The container runtime managing this container.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'docker', 'containerd', 'rkt'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeContainerRuntime = "container.runtime"
	// Name of the image the container was built on.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'gcr.io/opentelemetry/operator'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeContainerImageName = "container.image.name"
	// Container image tag.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '0.1'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeContainerImageTag = "container.image.tag"
)

A container instance.

View Source
const (
	// A unique identifier representing the device
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '2ab2916d-a51f-4ac8-80ee-45ac31a28092'
	// Note: The device identifier MUST only be defined using the values outlined
	// below. This value is not an advertising identifier and MUST NOT be used as
	// such. On iOS (Swift or Objective-C), this value MUST be equal to the vendor
	// identifier. On Android (Java or Kotlin), this value MUST be equal to the
	// Firebase Installation ID or a globally unique UUID which is persisted across
	// sessions in your application. More information can be found here on best
	// practices and exact implementation details. Caution should be taken when
	// storing personal data or anything which can identify a user. GDPR and data
	// protection laws may apply, ensure you do your own due diligence.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDeviceID = "device.id"
	// The model identifier for the device
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'iPhone3,4', 'SM-G920F'
	// Note: It's recommended this value represents a machine readable version of the
	// model identifier rather than the market or consumer-friendly name of the
	// device.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDeviceModelIdentifier = "device.model.identifier"
	// The marketing name for the device model
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'iPhone 6s Plus', 'Samsung Galaxy S6'
	// Note: It's recommended this value represents a human readable version of the
	// device model rather than a machine readable alternative.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDeviceModelName = "device.model.name"
)

The device on which the process represented by this resource is running.

View Source
const (
	// The name of the single function that this runtime instance executes.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'my-function'
	// Note: This is the name of the function as configured/deployed on the FaaS
	// platform and is usually different from the name of the callback function (which
	// may be stored in the code.namespace/code.function span attributes).
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSName = "faas.name"
	// The unique ID of the single function that this runtime instance executes.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'arn:aws:lambda:us-west-2:123456789012:function:my-function'
	// Note: Depending on the cloud provider, use:<ul>
	// <li>AWS Lambda: The function ARN.</li>
	// </ul>
	// Take care not to use the &quot;invoked ARN&quot; directly but replace any
	// alias suffix with the resolved function version, as the same runtime instance
	// may be invokable with multiple
	// different aliases.<ul>
	// <li>GCP: The URI of the resource</li>
	// <li>Azure: The Fully Qualified Resource ID.</li>
	// </ul>
	// On some providers, it may not be possible to determine the full ID at startup,
	// which is why this field cannot be made required. For example, on AWS the
	// account ID
	// part of the ARN is not available without calling another AWS API
	// which may be deemed too slow for a short-running lambda function.
	// As an alternative, consider setting faas.id as a span attribute instead.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSID = "faas.id"
	// The immutable version of the function being executed.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '26', 'pinkfroid-00002'
	// Note: Depending on the cloud provider and platform, use:<ul>
	// <li>AWS Lambda: The function version
	// (an integer represented as a decimal string).</li>
	// <li>Google Cloud Run: The revision
	// (i.e., the function name plus the revision suffix).</li>
	// <li>Google Cloud Functions: The value of the
	// K_REVISION environment variable.</li>
	// <li>Azure Functions: Not applicable. Do not set this attribute.</li>
	// </ul>
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSVersion = "faas.version"
	// The execution environment ID as a string, that will be potentially reused for
	// other invocations to the same function/function version.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '2021/06/28/[$LATEST]2f399eb14537447da05ab2a2e39309de'
	// Note: <ul>
	// <li>AWS Lambda: Use the (full) log stream name.</li>
	// </ul>
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSInstance = "faas.instance"
	// The amount of memory available to the serverless function in MiB.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 128
	// Note: It's recommended to set this attribute since e.g. too little memory can
	// easily stop a Java AWS Lambda function from working correctly. On AWS Lambda,
	// the environment variable AWS_LAMBDA_FUNCTION_MEMORY_SIZE provides this
	// information.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSMaxMemory = "faas.max_memory"
)

A serverless instance.

View Source
const (
	// Unique host ID. For Cloud, this must be the instance_id assigned by the cloud
	// provider.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry-test'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostID = "host.id"
	// Name of the host. On Unix systems, it may contain what the hostname command
	// returns, or the fully qualified hostname, or another name specified by the
	// user.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry-test'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostName = "host.name"
	// Type of host. For Cloud, this must be the machine type.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'n1-standard-1'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostType = "host.type"
	// The CPU architecture the host system is running on.
	//
	// Type: Enum
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostArch = "host.arch"
	// Name of the VM image or OS install the host was instantiated from.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'infra-ami-eks-worker-node-7d4ec78312', 'CentOS-8-x86_64-1905'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostImageName = "host.image.name"
	// VM image ID. For Cloud, this value is from the provider.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'ami-07b06b442921831e5'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostImageID = "host.image.id"
	// The version string of the VM image as defined in Version Attributes.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '0.1'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostImageVersion = "host.image.version"
)

A host is defined as a general computing instance.

View Source
const (
	// AMD64
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostArchAMD64 = "amd64"
	// ARM32
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostArchARM32 = "arm32"
	// ARM64
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostArchARM64 = "arm64"
	// Itanium
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostArchIA64 = "ia64"
	// 32-bit PowerPC
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostArchPPC32 = "ppc32"
	// 64-bit PowerPC
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostArchPPC64 = "ppc64"
	// 32-bit x86
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHostArchX86 = "x86"
)
View Source
const (
	// The name of the Node.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'node-1'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SNodeName = "k8s.node.name"
	// The UID of the Node.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '1eb3a0c6-0477-4080-a9cb-0cb7db65c6a2'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SNodeUID = "k8s.node.uid"
)

A Kubernetes Node object.

View Source
const (
	// The UID of the Pod.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '275ecb36-5aa8-4c2a-9c47-d8bb681b9aff'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SPodUID = "k8s.pod.uid"
	// The name of the Pod.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry-pod-autoconf'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SPodName = "k8s.pod.name"
)

A Kubernetes Pod object.

View Source
const (
	// The UID of the ReplicaSet.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '275ecb36-5aa8-4c2a-9c47-d8bb681b9aff'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SReplicaSetUID = "k8s.replicaset.uid"
	// The name of the ReplicaSet.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SReplicaSetName = "k8s.replicaset.name"
)

A Kubernetes ReplicaSet object.

View Source
const (
	// The UID of the Deployment.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '275ecb36-5aa8-4c2a-9c47-d8bb681b9aff'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SDeploymentUID = "k8s.deployment.uid"
	// The name of the Deployment.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SDeploymentName = "k8s.deployment.name"
)

A Kubernetes Deployment object.

View Source
const (
	// The UID of the StatefulSet.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '275ecb36-5aa8-4c2a-9c47-d8bb681b9aff'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SStatefulSetUID = "k8s.statefulset.uid"
	// The name of the StatefulSet.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SStatefulSetName = "k8s.statefulset.name"
)

A Kubernetes StatefulSet object.

View Source
const (
	// The UID of the DaemonSet.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '275ecb36-5aa8-4c2a-9c47-d8bb681b9aff'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SDaemonSetUID = "k8s.daemonset.uid"
	// The name of the DaemonSet.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SDaemonSetName = "k8s.daemonset.name"
)

A Kubernetes DaemonSet object.

View Source
const (
	// The UID of the Job.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '275ecb36-5aa8-4c2a-9c47-d8bb681b9aff'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SJobUID = "k8s.job.uid"
	// The name of the Job.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SJobName = "k8s.job.name"
)

A Kubernetes Job object.

View Source
const (
	// The UID of the CronJob.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '275ecb36-5aa8-4c2a-9c47-d8bb681b9aff'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SCronJobUID = "k8s.cronjob.uid"
	// The name of the CronJob.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SCronJobName = "k8s.cronjob.name"
)

A Kubernetes CronJob object.

View Source
const (
	// The operating system type.
	//
	// Type: Enum
	// Required: Always
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSType = "os.type"
	// Human readable (not intended to be parsed) OS version information, like e.g.
	// reported by ver or lsb_release -a commands.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'Microsoft Windows [Version 10.0.18363.778]', 'Ubuntu 18.04.1 LTS'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSDescription = "os.description"
	// Human readable operating system name.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'iOS', 'Android', 'Ubuntu'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSName = "os.name"
	// The version string of the operating system as defined in Version Attributes.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '14.2.1', '18.04.1'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSVersion = "os.version"
)

The operating system (OS) on which the process represented by this resource is running.

View Source
const (
	// Microsoft Windows
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeWindows = "windows"
	// Linux
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeLinux = "linux"
	// Apple Darwin
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeDarwin = "darwin"
	// FreeBSD
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeFreeBSD = "freebsd"
	// NetBSD
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeNetBSD = "netbsd"
	// OpenBSD
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeOpenBSD = "openbsd"
	// DragonFly BSD
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeDragonflyBSD = "dragonflybsd"
	// HP-UX (Hewlett Packard Unix)
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeHPUX = "hpux"
	// AIX (Advanced Interactive eXecutive)
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeAIX = "aix"
	// Oracle Solaris
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeSolaris = "solaris"
	// IBM z/OS
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeOSTypeZOS = "z_os"
)
View Source
const (
	// Process identifier (PID).
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 1234
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeProcessPID = "process.pid"
	// The name of the process executable. On Linux based systems, can be set to the
	// Name in proc/[pid]/status. On Windows, can be set to the base name of
	// GetProcessImageFileNameW.
	//
	// Type: string
	// Required: See below
	// Stability: stable
	// Examples: 'otelcol'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeProcessExecutableName = "process.executable.name"
	// The full path to the process executable. On Linux based systems, can be set to
	// the target of proc/[pid]/exe. On Windows, can be set to the result of
	// GetProcessImageFileNameW.
	//
	// Type: string
	// Required: See below
	// Stability: stable
	// Examples: '/usr/bin/cmd/otelcol'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeProcessExecutablePath = "process.executable.path"
	// The command used to launch the process (i.e. the command name). On Linux based
	// systems, can be set to the zeroth string in proc/[pid]/cmdline. On Windows, can
	// be set to the first parameter extracted from GetCommandLineW.
	//
	// Type: string
	// Required: See below
	// Stability: stable
	// Examples: 'cmd/otelcol'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeProcessCommand = "process.command"
	// The full command used to launch the process as a single string representing the
	// full command. On Windows, can be set to the result of GetCommandLineW. Do not
	// set this if you have to assemble it just for monitoring; use
	// process.command_args instead.
	//
	// Type: string
	// Required: See below
	// Stability: stable
	// Examples: 'C:\\cmd\\otecol --config="my directory\\config.yaml"'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeProcessCommandLine = "process.command_line"
	// All the command arguments (including the command/executable itself) as received
	// by the process. On Linux-based systems (and some other Unixoid systems
	// supporting procfs), can be set according to the list of null-delimited strings
	// extracted from proc/[pid]/cmdline. For libc-based executables, this would be
	// the full argv vector passed to main.
	//
	// Type: string[]
	// Required: See below
	// Stability: stable
	// Examples: 'cmd/otecol', '--config=config.yaml'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeProcessCommandArgs = "process.command_args"
	// The username of the user that owns the process.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'root'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeProcessOwner = "process.owner"
)

An operating system process.

View Source
const (
	// The name of the runtime of this process. For compiled native binaries, this
	// SHOULD be the name of the compiler.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'OpenJDK Runtime Environment'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeProcessRuntimeName = "process.runtime.name"
	// The version of the runtime of this process, as returned by the runtime without
	// modification.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '14.0.2'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeProcessRuntimeVersion = "process.runtime.version"
	// An additional description about the runtime of the process, for example a
	// specific vendor customization of the runtime environment.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'Eclipse OpenJ9 Eclipse OpenJ9 VM openj9-0.21.0'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeProcessRuntimeDescription = "process.runtime.description"
)

The single (language) runtime instance which is monitored.

View Source
const (
	// Logical name of the service.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'shoppingcart'
	// Note: MUST be the same for all instances of horizontally scaled services. If
	// the value was not specified, SDKs MUST fallback to unknown_service:
	// concatenated with process.executable.name, e.g. unknown_service:bash. If
	// process.executable.name is not available, the value MUST be set to
	// unknown_service.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeServiceName = "service.name"
	// A namespace for service.name.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'Shop'
	// Note: A string value having a meaning that helps to distinguish a group of
	// services, for example the team name that owns a group of services. service.name
	// is expected to be unique within the same namespace. If service.namespace is not
	// specified in the Resource then service.name is expected to be unique for all
	// services that have no explicit namespace defined (so the empty/unspecified
	// namespace is simply one more valid namespace). Zero-length namespace string is
	// assumed equal to unspecified namespace.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeServiceNamespace = "service.namespace"
	// The string ID of the service instance.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '627cc493-f310-47de-96bd-71410b7dec09'
	// Note: MUST be unique for each instance of the same
	// service.namespace,service.name pair (in other words
	// service.namespace,service.name,service.instance.id triplet MUST be globally
	// unique). The ID helps to distinguish instances of the same service that exist
	// at the same time (e.g. instances of a horizontally scaled service). It is
	// preferable for the ID to be persistent and stay the same for the lifetime of
	// the service instance, however it is acceptable that the ID is ephemeral and
	// changes during important lifetime events for the service (e.g. service
	// restarts). If the service has no inherent unique ID that can be used as the
	// value of this attribute it is recommended to generate a random Version 1 or
	// Version 4 RFC 4122 UUID (services aiming for reproducible UUIDs may also use
	// Version 5, see RFC 4122 for more recommendations).
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeServiceInstanceID = "service.instance.id"
	// The version string of the service API or implementation.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '2.0.0'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeServiceVersion = "service.version"
)

A service instance.

View Source
const (
	// The name of the telemetry SDK as defined above.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKName = "telemetry.sdk.name"
	// The language of the telemetry SDK.
	//
	// Type: Enum
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguage = "telemetry.sdk.language"
	// The version string of the telemetry SDK.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '1.2.3'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKVersion = "telemetry.sdk.version"
	// The version string of the auto instrumentation agent, if used.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '1.2.3'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetryAutoVersion = "telemetry.auto.version"
)

The telemetry SDK used to capture data recorded by the instrumentation libraries.

View Source
const (
	// cpp
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguageCPP = "cpp"
	// dotnet
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguageDotnet = "dotnet"
	// erlang
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguageErlang = "erlang"
	// go
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguageGo = "go"
	// java
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguageJava = "java"
	// nodejs
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguageNodejs = "nodejs"
	// php
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguagePHP = "php"
	// python
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguagePython = "python"
	// ruby
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguageRuby = "ruby"
	// webjs
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeTelemetrySDKLanguageWebjs = "webjs"
)
View Source
const (
	// The name of the web engine.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'WildFly'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeWebEngineName = "webengine.name"
	// The version of the web engine.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '21.0.0'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeWebEngineVersion = "webengine.version"
	// Additional description of the web engine (e.g. detailed version and edition
	// information).
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'WildFly Full 21.0.0.Final (WildFly Core 13.0.1.Final) - 2.2.2.Final'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeWebEngineDescription = "webengine.description"
)

Resource describing the packaged software running the application code. Web engines are typically executed using process.runtime.

View Source
const (
	// An identifier for the database management system (DBMS) product being used. See
	// below for a list of well-known identifiers.
	//
	// Type: Enum
	// Required: Always
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystem = "db.system"
	// The connection string used to connect to the database. It is recommended to
	// remove embedded credentials.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'Server=(localdb)\\v11.0;Integrated Security=true;'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBConnectionString = "db.connection_string"
	// Username for accessing the database.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'readonly_user', 'reporting_user'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBUser = "db.user"
	// The fully-qualified class name of the Java Database Connectivity (JDBC) driver
	// used to connect.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'org.postgresql.Driver',
	// 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBJDBCDriverClassname = "db.jdbc.driver_classname"
	// If no tech-specific attribute is defined, this attribute is used to report the
	// name of the database being accessed. For commands that switch the database,
	// this should be set to the target database (even if the command fails).
	//
	// Type: string
	// Required: Required, if applicable and no more-specific attribute is defined.
	// Stability: stable
	// Examples: 'customers', 'main'
	// Note: In some SQL databases, the database name to be used is called
	// &quot;schema name&quot;.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBName = "db.name"
	// The database statement being executed.
	//
	// Type: string
	// Required: Required if applicable and not explicitly disabled via
	// instrumentation configuration.
	// Stability: stable
	// Examples: 'SELECT * FROM wuser_table', 'SET mykey "WuValue"'
	// Note: The value may be sanitized to exclude sensitive information.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBStatement = "db.statement"
	// The name of the operation being executed, e.g. the MongoDB command name such as
	// findAndModify, or the SQL keyword.
	//
	// Type: string
	// Required: Required, if `db.statement` is not applicable.
	// Stability: stable
	// Examples: 'findAndModify', 'HMSET', 'SELECT'
	// Note: When setting this to an SQL keyword, it is not recommended to attempt any
	// client-side parsing of db.statement just to get this property, but it should be
	// set if the operation name is provided by the library being instrumented. If the
	// SQL statement has an ambiguous operation, or performs more than one operation,
	// this value may be omitted.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBOperation = "db.operation"
)

This document defines the attributes used to perform database client calls.

View Source
const (
	// Some other SQL database. Fallback only. See notes
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemOtherSQL = "other_sql"
	// Microsoft SQL Server
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemMSSQL = "mssql"
	// MySQL
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemMySQL = "mysql"
	// Oracle Database
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemOracle = "oracle"
	// IBM DB2
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemDB2 = "db2"
	// PostgreSQL
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemPostgreSQL = "postgresql"
	// Amazon Redshift
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemRedshift = "redshift"
	// Apache Hive
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemHive = "hive"
	// Cloudscape
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemCloudscape = "cloudscape"
	// HyperSQL DataBase
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemHSQLDB = "hsqldb"
	// Progress Database
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemProgress = "progress"
	// SAP MaxDB
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemMaxDB = "maxdb"
	// SAP HANA
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemHanaDB = "hanadb"
	// Ingres
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemIngres = "ingres"
	// FirstSQL
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemFirstSQL = "firstsql"
	// EnterpriseDB
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemEDB = "edb"
	// InterSystems Caché
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemCache = "cache"
	// Adabas (Adaptable Database System)
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemAdabas = "adabas"
	// Firebird
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemFirebird = "firebird"
	// Apache Derby
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemDerby = "derby"
	// FileMaker
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemFilemaker = "filemaker"
	// Informix
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemInformix = "informix"
	// InstantDB
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemInstantDB = "instantdb"
	// InterBase
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemInterbase = "interbase"
	// MariaDB
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemMariaDB = "mariadb"
	// Netezza
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemNetezza = "netezza"
	// Pervasive PSQL
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemPervasive = "pervasive"
	// PointBase
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemPointbase = "pointbase"
	// SQLite
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemSqlite = "sqlite"
	// Sybase
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemSybase = "sybase"
	// Teradata
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemTeradata = "teradata"
	// Vertica
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemVertica = "vertica"
	// H2
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemH2 = "h2"
	// ColdFusion IMQ
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemColdfusion = "coldfusion"
	// Apache Cassandra
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemCassandra = "cassandra"
	// Apache HBase
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemHBase = "hbase"
	// MongoDB
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemMongoDB = "mongodb"
	// Redis
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemRedis = "redis"
	// Couchbase
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemCouchbase = "couchbase"
	// CouchDB
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemCouchDB = "couchdb"
	// Microsoft Azure Cosmos DB
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemCosmosDB = "cosmosdb"
	// Amazon DynamoDB
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemDynamoDB = "dynamodb"
	// Neo4j
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemNeo4j = "neo4j"
	// Apache Geode
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemGeode = "geode"
	// Elasticsearch
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemElasticsearch = "elasticsearch"
	// Memcached
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemMemcached = "memcached"
	// CockroachDB
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSystemCockroachdb = "cockroachdb"
)
View Source
const (
	// The name of the keyspace being accessed. To be used instead of the generic
	// db.name attribute.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'mykeyspace'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraKeyspace = "db.cassandra.keyspace"
	// The fetch size used for paging, i.e. how many rows will be returned at once.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 5000
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraPageSize = "db.cassandra.page_size"
	// The consistency level of the query. Based on consistency values from CQL.
	//
	// Type: Enum
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevel = "db.cassandra.consistency_level"
	// The name of the primary table that the operation is acting upon, including the
	// schema name (if applicable).
	//
	// Type: string
	// Required: Recommended if available.
	// Stability: stable
	// Examples: 'mytable'
	// Note: This mirrors the db.sql.table attribute but references cassandra rather
	// than sql. It is not recommended to attempt any client-side parsing of
	// db.statement just to get this property, but it should be set if it is provided
	// by the library being instrumented. If the operation is acting upon an anonymous
	// table, or more than one table, this value MUST NOT be set.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraTable = "db.cassandra.table"
	// Whether or not the query is idempotent.
	//
	// Type: boolean
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraIdempotence = "db.cassandra.idempotence"
	// The number of times a query was speculatively executed. Not set or 0 if the
	// query was not executed speculatively.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 0, 2
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraSpeculativeExecutionCount = "db.cassandra.speculative_execution_count"
	// The ID of the coordinating node for a query.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'be13faa2-8574-4d71-926d-27f16cf8a7af'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraCoordinatorID = "db.cassandra.coordinator.id"
	// The data center of the coordinating node for a query.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'us-west-2'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraCoordinatorDC = "db.cassandra.coordinator.dc"
)

Call-level attributes for Cassandra

View Source
const (
	// all
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelAll = "all"
	// each_quorum
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelEachQuorum = "each_quorum"
	// quorum
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelQuorum = "quorum"
	// local_quorum
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelLocalQuorum = "local_quorum"
	// one
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelOne = "one"
	// two
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelTwo = "two"
	// three
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelThree = "three"
	// local_one
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelLocalOne = "local_one"
	// any
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelAny = "any"
	// serial
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelSerial = "serial"
	// local_serial
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBCassandraConsistencyLevelLocalSerial = "local_serial"
)
View Source
const (
	// The type of the exception (its fully-qualified class name, if applicable). The
	// dynamic type of the exception should be preferred over the static type in
	// languages that support it.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'java.net.ConnectException', 'OSError'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeExceptionType = "exception.type"
	// The exception message.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'Division by zero', "Can't convert 'int' object to str implicitly"
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeExceptionMessage = "exception.message"
	// A stacktrace as a string in the natural representation for the language
	// runtime. The representation is to be determined and documented by each language
	// SIG.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'Exception in thread "main" java.lang.RuntimeException: Test
	// exception\\n at '
	//  'com.example.GenerateTrace.methodB(GenerateTrace.java:13)\\n at '
	//  'com.example.GenerateTrace.methodA(GenerateTrace.java:9)\\n at '
	//  'com.example.GenerateTrace.main(GenerateTrace.java:5)'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeExceptionStacktrace = "exception.stacktrace"
	// SHOULD be set to true if the exception event is recorded at a point where it is
	// known that the exception is escaping the scope of the span.
	//
	// Type: boolean
	// Required: No
	// Stability: stable
	// Note: An exception is considered to have escaped (or left) the scope of a span,
	// if that span is ended while the exception is still logically &quot;in
	// flight&quot;.
	// This may be actually &quot;in flight&quot; in some languages (e.g. if the
	// exception
	// is passed to a Context manager's __exit__ method in Python) but will
	// usually be caught at the point of recording the exception in most languages.It
	// is usually not possible to determine at the point where an exception is thrown
	// whether it will escape the scope of a span.
	// However, it is trivial to know that an exception
	// will escape, if one checks for an active exception just before ending the span,
	// as done in the example above.It follows that an exception may still escape the
	// scope of the span
	// even if the exception.escaped attribute was not set or set to false,
	// since the event might have been recorded at a time where it was not
	// clear whether the exception will escape.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeExceptionEscaped = "exception.escaped"
)

This document defines the attributes used to report a single exception associated with a span.

View Source
const (
	// Type of the trigger on which the function is executed.
	//
	// Type: Enum
	// Required: On FaaS instances, faas.trigger MUST be set on incoming invocations.
	// Clients invoking FaaS instances MUST set `faas.trigger` on outgoing
	// invocations, if it is known to the client. This is, for example, not the case,
	// when the transport layer is abstracted in a FaaS client framework without
	// access to its configuration.
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSTrigger = "faas.trigger"
	// The execution ID of the current function execution.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'af9d5aa4-a685-4c5f-a22b-444f80b3cc28'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSExecution = "faas.execution"
)

This semantic convention describes an instance of a function that runs without provisioning or managing of servers (also known as serverless functions or Function as a Service (FaaS)) with spans.

View Source
const (
	// A response to some data source operation such as a database or filesystem read/write
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSTriggerDatasource = "datasource"
	// To provide an answer to an inbound HTTP request
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSTriggerHTTP = "http"
	// A function is set to be executed when messages are sent to a messaging system
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSTriggerPubsub = "pubsub"
	// A function is scheduled to be executed regularly
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSTriggerTimer = "timer"
	// If none of the others apply
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSTriggerOther = "other"
)
View Source
const (
	// The name of the source on which the triggering operation was performed. For
	// example, in Cloud Storage or S3 corresponds to the bucket name, and in Cosmos
	// DB to the database name.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'myBucketName', 'myDBName'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSDocumentCollection = "faas.document.collection"
	// Describes the type of the operation that was performed on the data.
	//
	// Type: Enum
	// Required: Always
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSDocumentOperation = "faas.document.operation"
	// A string containing the time when the data was accessed in the ISO 8601 format
	// expressed in UTC.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: '2020-01-23T13:47:06Z'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSDocumentTime = "faas.document.time"
	// The document name/table subjected to the operation. For example, in Cloud
	// Storage or S3 is the name of the file, and in Cosmos DB the table name.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'myFile.txt', 'myTableName'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSDocumentName = "faas.document.name"
)

Semantic Convention for FaaS triggered as a response to some data source operation such as a database or filesystem read/write.

View Source
const (
	// When a new object is created
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSDocumentOperationInsert = "insert"
	// When an object is modified
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSDocumentOperationEdit = "edit"
	// When an object is deleted
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSDocumentOperationDelete = "delete"
)
View Source
const (
	// A string containing the function invocation time in the ISO 8601 format
	// expressed in UTC.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: '2020-01-23T13:47:06Z'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSTime = "faas.time"
	// A string containing the schedule period as Cron Expression.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '0/5 * * * ? *'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSCron = "faas.cron"
)

Semantic Convention for FaaS scheduled to be executed regularly.

View Source
const (
	// The name of the invoked function.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'my-function'
	// Note: SHOULD be equal to the faas.name resource attribute of the invoked
	// function.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSInvokedName = "faas.invoked_name"
	// The cloud provider of the invoked function.
	//
	// Type: Enum
	// Required: Always
	// Stability: stable
	// Note: SHOULD be equal to the cloud.provider resource attribute of the invoked
	// function.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSInvokedProvider = "faas.invoked_provider"
	// The cloud region of the invoked function.
	//
	// Type: string
	// Required: For some cloud providers, like AWS or GCP, the region in which a
	// function is hosted is essential to uniquely identify the function and also part
	// of its endpoint. Since it's part of the endpoint being called, the region is
	// always known to clients. In these cases, `faas.invoked_region` MUST be set
	// accordingly. If the region is unknown to the client or not required for
	// identifying the invoked function, setting `faas.invoked_region` is optional.
	// Stability: stable
	// Examples: 'eu-central-1'
	// Note: SHOULD be equal to the cloud.region resource attribute of the invoked
	// function.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSInvokedRegion = "faas.invoked_region"
)

Contains additional attributes for outgoing FaaS spans.

View Source
const (
	// Amazon Web Services
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSInvokedProviderAWS = "aws"
	// Microsoft Azure
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSInvokedProviderAzure = "azure"
	// Google Cloud Platform
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSInvokedProviderGCP = "gcp"
)
View Source
const (
	// Transport protocol used. See note below.
	//
	// Type: Enum
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetTransport = "net.transport"
	// Remote address of the peer (dotted decimal for IPv4 or RFC5952 for IPv6)
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '127.0.0.1'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetPeerIP = "net.peer.ip"
	// Remote port number.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 80, 8080, 443
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetPeerPort = "net.peer.port"
	// Remote hostname or similar, see note below.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'example.com'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetPeerName = "net.peer.name"
	// Like net.peer.ip but for the host IP. Useful in case of a multi-IP host.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '192.168.0.1'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetHostIP = "net.host.ip"
	// Like net.peer.port but for the host port.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 35555
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetHostPort = "net.host.port"
	// Local hostname or similar, see note below.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'localhost'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetHostName = "net.host.name"
)

These attributes may be used for any network related operation.

View Source
const (
	// ip_tcp
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetTransportTCP = "ip_tcp"
	// ip_udp
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetTransportUDP = "ip_udp"
	// Another IP-based protocol
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetTransportIP = "ip"
	// Unix Domain socket. See below
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetTransportUnix = "unix"
	// Named or anonymous pipe. See note below
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetTransportPipe = "pipe"
	// In-process communication
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetTransportInProc = "inproc"
	// Something else (non IP-based)
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeNetTransportOther = "other"
)
View Source
const (
	// Username or client_id extracted from the access token or Authorization header
	// in the inbound request from outside the system.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'username'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeEnduserID = "enduser.id"
	// Actual/assumed role the client is making the request under extracted from token
	// or application security context.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'admin'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeEnduserRole = "enduser.role"
	// Scopes or granted authorities the client currently possesses extracted from
	// token or application security context. The value would come from the scope
	// associated with an OAuth 2.0 Access Token or an attribute value in a SAML 2.0
	// Assertion.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'read:message, write:files'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeEnduserScope = "enduser.scope"
)

These attributes may be used for any operation with an authenticated and/or authorized enduser.

View Source
const (
	// Current &quot;managed&quot; thread ID (as opposed to OS thread ID).
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 42
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeThreadID = "thread.id"
	// Current thread name.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'main'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeThreadName = "thread.name"
)

These attributes may be used for any operation to store information about a thread that started a span.

View Source
const (
	// The method or function name, or equivalent (usually rightmost part of the code
	// unit's name).
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'serveRequest'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCodeFunction = "code.function"
	// The &quot;namespace&quot; within which code.function is defined. Usually the
	// qualified class or module name, such that code.namespace + some separator +
	// code.function form a unique identifier for the code unit.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'com.example.MyHTTPService'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCodeNamespace = "code.namespace"
	// The source code file name that identifies the code unit as uniquely as possible
	// (preferably an absolute file path).
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '/usr/local/MyApplication/content_root/app/index.php'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCodeFilepath = "code.filepath"
	// The line number in code.filepath best representing the operation. It SHOULD
	// point within the code unit named in code.function.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 42
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeCodeLineNumber = "code.lineno"
)

These attributes allow to report this unit of code and therefore to provide more context about the span.

View Source
const (
	// HTTP request method.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'GET', 'POST', 'HEAD'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPMethod = "http.method"
	// Full HTTP request URL in the form scheme://host[:port]/path?query[#fragment].
	// Usually the fragment is not transmitted over HTTP, but if it is known, it
	// should be included nevertheless.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'https://www.foo.bar/search?q=OpenTelemetry#SemConv'
	// Note: http.url MUST NOT contain credentials passed via URL in form of
	// https://username:password@www.example.com/. In such case the attribute's value
	// should be https://www.example.com/.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPURL = "http.url"
	// The full request target as passed in a HTTP request line or equivalent.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '/path/12314/?q=ddds#123'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPTarget = "http.target"
	// The value of the HTTP host header. When the header is empty or not present,
	// this attribute should be the same.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'www.example.org'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPHost = "http.host"
	// The URI scheme identifying the used protocol.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'http', 'https'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPScheme = "http.scheme"
	// HTTP response status code.
	//
	// Type: int
	// Required: If and only if one was received/sent.
	// Stability: stable
	// Examples: 200
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPStatusCode = "http.status_code"
	// Kind of HTTP protocol used.
	//
	// Type: Enum
	// Required: No
	// Stability: stable
	// Note: If net.transport is not specified, it can be assumed to be IP.TCP except
	// if http.flavor is QUIC, in which case IP.UDP is assumed.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPFlavor = "http.flavor"
	// Value of the HTTP User-Agent header sent by the client.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'CERN-LineMode/2.15 libwww/2.17b3'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPUserAgent = "http.user_agent"
	// The size of the request payload body in bytes. This is the number of bytes
	// transferred excluding headers and is often, but not always, present as the
	// Content-Length header. For requests using transport encoding, this should be
	// the compressed size.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 3495
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPRequestContentLength = "http.request_content_length"
	// The size of the uncompressed request payload body after transport decoding. Not
	// set if transport encoding not used.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 5493
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPRequestContentLengthUncompressed = "http.request_content_length_uncompressed"
	// The size of the response payload body in bytes. This is the number of bytes
	// transferred excluding headers and is often, but not always, present as the
	// Content-Length header. For requests using transport encoding, this should be
	// the compressed size.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 3495
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPResponseContentLength = "http.response_content_length"
	// The size of the uncompressed response payload body after transport decoding.
	// Not set if transport encoding not used.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 5493
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPResponseContentLengthUncompressed = "http.response_content_length_uncompressed"
)

This document defines semantic conventions for HTTP client and server Spans.

View Source
const (
	// HTTP 1.0
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPFlavorHTTP10 = "1.0"
	// HTTP 1.1
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPFlavorHTTP11 = "1.1"
	// HTTP 2
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPFlavorHTTP20 = "2.0"
	// SPDY protocol
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPFlavorSPDY = "SPDY"
	// QUIC protocol
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPFlavorQUIC = "QUIC"
)
View Source
const (
	// The primary server name of the matched virtual host. This should be obtained
	// via configuration. If no such configuration can be obtained, this attribute
	// MUST NOT be set ( net.host.name should be used instead).
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'example.com'
	// Note: http.url is usually not readily available on the server side but would
	// have to be assembled in a cumbersome and sometimes lossy process from other
	// information (see e.g. open-telemetry/opentelemetry-python/pull/148). It is thus
	// preferred to supply the raw data that is available.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPServerName = "http.server_name"
	// The matched route (path template).
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '/users/:userID?'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPRoute = "http.route"
	// The IP address of the original client behind all proxies, if known (e.g. from
	// X-Forwarded-For).
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '83.164.160.102'
	// Note: This is not necessarily the same as net.peer.ip, which would identify the
	// network-level peer, which may be a proxy.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeHTTPClientIP = "http.client_ip"
)

Semantic Convention for HTTP Server

View Source
const (
	// The keys in the RequestItems object field.
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: 'Users', 'Cats'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBTableNames = "aws.dynamodb.table_names"
	// The JSON-serialized value of each item in the ConsumedCapacity response field.
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: '{ "CapacityUnits": number, "GlobalSecondaryIndexes": { "string" : {
	// "CapacityUnits": number, "ReadCapacityUnits": number, "WriteCapacityUnits":
	// number } }, "LocalSecondaryIndexes": { "string" : { "CapacityUnits": number,
	// "ReadCapacityUnits": number, "WriteCapacityUnits": number } },
	// "ReadCapacityUnits": number, "Table": { "CapacityUnits": number,
	// "ReadCapacityUnits": number, "WriteCapacityUnits": number }, "TableName":
	// "string", "WriteCapacityUnits": number }'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBConsumedCapacity = "aws.dynamodb.consumed_capacity"
	// The JSON-serialized value of the ItemCollectionMetrics response field.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '{ "string" : [ { "ItemCollectionKey": { "string" : { "B": blob,
	// "BOOL": boolean, "BS": [ blob ], "L": [ "AttributeValue" ], "M": { "string" :
	// "AttributeValue" }, "N": "string", "NS": [ "string" ], "NULL": boolean, "S":
	// "string", "SS": [ "string" ] } }, "SizeEstimateRangeGB": [ number ] } ] }'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBItemCollectionMetrics = "aws.dynamodb.item_collection_metrics"
	// The value of the ProvisionedThroughput.ReadCapacityUnits request parameter.
	//
	// Type: double
	// Required: No
	// Stability: stable
	// Examples: 1.0, 2.0
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBProvisionedReadCapacity = "aws.dynamodb.provisioned_read_capacity"
	// The value of the ProvisionedThroughput.WriteCapacityUnits request parameter.
	//
	// Type: double
	// Required: No
	// Stability: stable
	// Examples: 1.0, 2.0
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBProvisionedWriteCapacity = "aws.dynamodb.provisioned_write_capacity"
	// The value of the ConsistentRead request parameter.
	//
	// Type: boolean
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBConsistentRead = "aws.dynamodb.consistent_read"
	// The value of the ProjectionExpression request parameter.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'Title', 'Title, Price, Color', 'Title, Description, RelatedItems,
	// ProductReviews'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBProjection = "aws.dynamodb.projection"
	// The value of the Limit request parameter.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 10
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBLimit = "aws.dynamodb.limit"
	// The value of the AttributesToGet request parameter.
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: 'lives', 'id'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBAttributesToGet = "aws.dynamodb.attributes_to_get"
	// The value of the IndexName request parameter.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'name_to_group'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBIndexName = "aws.dynamodb.index_name"
	// The value of the Select request parameter.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'ALL_ATTRIBUTES', 'COUNT'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBSelect = "aws.dynamodb.select"
)

Attributes that exist for multiple DynamoDB request types.

View Source
const (
	// The JSON-serialized value of each item of the GlobalSecondaryIndexes request
	// field
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: '{ "IndexName": "string", "KeySchema": [ { "AttributeName": "string",
	// "KeyType": "string" } ], "Projection": { "NonKeyAttributes": [ "string" ],
	// "ProjectionType": "string" }, "ProvisionedThroughput": { "ReadCapacityUnits":
	// number, "WriteCapacityUnits": number } }'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBGlobalSecondaryIndexes = "aws.dynamodb.global_secondary_indexes"
	// The JSON-serialized value of each item of the LocalSecondaryIndexes request
	// field.
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: '{ "IndexARN": "string", "IndexName": "string", "IndexSizeBytes":
	// number, "ItemCount": number, "KeySchema": [ { "AttributeName": "string",
	// "KeyType": "string" } ], "Projection": { "NonKeyAttributes": [ "string" ],
	// "ProjectionType": "string" } }'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBLocalSecondaryIndexes = "aws.dynamodb.local_secondary_indexes"
)

DynamoDB.CreateTable

View Source
const (
	// The value of the ExclusiveStartTableName request parameter.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'Users', 'CatsTable'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBExclusiveStartTable = "aws.dynamodb.exclusive_start_table"
	// The the number of items in the TableNames response parameter.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 20
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBTableCount = "aws.dynamodb.table_count"
)

DynamoDB.ListTables

View Source
const (
	// The value of the Segment request parameter.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 10
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBSegment = "aws.dynamodb.segment"
	// The value of the TotalSegments request parameter.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 100
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBTotalSegments = "aws.dynamodb.total_segments"
	// The value of the Count response parameter.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 10
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBCount = "aws.dynamodb.count"
	// The value of the ScannedCount response parameter.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 50
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBScannedCount = "aws.dynamodb.scanned_count"
)

DynamoDB.Scan

View Source
const (
	// The JSON-serialized value of each item in the AttributeDefinitions request
	// field.
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: '{ "AttributeName": "string", "AttributeType": "string" }'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBAttributeDefinitions = "aws.dynamodb.attribute_definitions"
	// The JSON-serialized value of each item in the the GlobalSecondaryIndexUpdates
	// request field.
	//
	// Type: string[]
	// Required: No
	// Stability: stable
	// Examples: '{ "Create": { "IndexName": "string", "KeySchema": [ {
	// "AttributeName": "string", "KeyType": "string" } ], "Projection": {
	// "NonKeyAttributes": [ "string" ], "ProjectionType": "string" },
	// "ProvisionedThroughput": { "ReadCapacityUnits": number, "WriteCapacityUnits":
	// number } }'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBGlobalSecondaryIndexUpdates = "aws.dynamodb.global_secondary_index_updates"
)

DynamoDB.UpdateTable

View Source
const (
	// A string identifying the messaging system.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'kafka', 'rabbitmq', 'activemq', 'AmazonSQS'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingSystem = "messaging.system"
	// The message destination name. This might be equal to the span name but is
	// required nevertheless.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'MyQueue', 'MyTopic'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingDestination = "messaging.destination"
	// The kind of message destination
	//
	// Type: Enum
	// Required: Required only if the message destination is either a `queue` or
	// `topic`.
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingDestinationKind = "messaging.destination_kind"
	// A boolean that is true if the message destination is temporary.
	//
	// Type: boolean
	// Required: If missing, it is assumed to be false.
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingTempDestination = "messaging.temp_destination"
	// The name of the transport protocol.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'AMQP', 'MQTT'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingProtocol = "messaging.protocol"
	// The version of the transport protocol.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '0.9.1'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingProtocolVersion = "messaging.protocol_version"
	// Connection string.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'tibjmsnaming://localhost:7222',
	// 'https://queue.amazonaws.com/80398EXAMPLE/MyQueue'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingURL = "messaging.url"
	// A value used by the messaging system as an identifier for the message,
	// represented as a string.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '452a7c7c7c7048c2f887f61572b18fc2'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingMessageID = "messaging.message_id"
	// The conversation ID identifying the conversation to which the message belongs,
	// represented as a string. Sometimes called &quot;Correlation ID&quot;.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'MyConversationID'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingConversationID = "messaging.conversation_id"
	// The (uncompressed) size of the message payload in bytes. Also use this
	// attribute if it is unknown whether the compressed or uncompressed payload size
	// is reported.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 2738
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingMessagePayloadSizeBytes = "messaging.message_payload_size_bytes"
	// The compressed size of the message payload in bytes.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 2048
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingMessagePayloadCompressedSizeBytes = "messaging.message_payload_compressed_size_bytes"
)

This document defines the attributes used in messaging systems.

View Source
const (
	// A message sent to a queue
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingDestinationKindQueue = "queue"
	// A message sent to a topic
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingDestinationKindTopic = "topic"
)
View Source
const (
	// receive
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingOperationReceive = "receive"
	// process
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingOperationProcess = "process"
)
View Source
const (
	// Message keys in Kafka are used for grouping alike messages to ensure they're
	// processed on the same partition. They differ from messaging.message_id in that
	// they're not unique. If the key is null, the attribute MUST NOT be set.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'myKey'
	// Note: If the key type is not string, it's string representation has to be
	// supplied for the attribute. If the key has no unambiguous, canonical string
	// form, don't include its value.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingKafkaMessageKey = "messaging.kafka.message_key"
	// Name of the Kafka Consumer Group that is handling the message. Only applies to
	// consumers, not producers.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'my-group'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingKafkaConsumerGroup = "messaging.kafka.consumer_group"
	// Client ID for the Consumer or Producer that is handling the message.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'client-5'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingKafkaClientID = "messaging.kafka.client_id"
	// Partition the message is sent to.
	//
	// Type: int
	// Required: No
	// Stability: stable
	// Examples: 2
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingKafkaPartition = "messaging.kafka.partition"
	// A boolean that is true if the message is a tombstone.
	//
	// Type: boolean
	// Required: If missing, it is assumed to be false.
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingKafkaTombstone = "messaging.kafka.tombstone"
)

Attributes for Apache Kafka

View Source
const (
	// A string identifying the remoting system.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'grpc', 'java_rmi', 'wcf'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCSystem = "rpc.system"
	// The full (logical) name of the service being called, including its package
	// name, if applicable.
	//
	// Type: string
	// Required: No, but recommended
	// Stability: stable
	// Examples: 'myservice.EchoService'
	// Note: This is the logical name of the service from the RPC interface
	// perspective, which can be different from the name of any implementing class.
	// The code.namespace attribute may be used to store the latter (despite the
	// attribute name, it may include a class name; e.g., class with method actually
	// executing the call on the server side, RPC client stub class on the client
	// side).
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCService = "rpc.service"
	// The name of the (logical) method being called, must be equal to the $method
	// part in the span name.
	//
	// Type: string
	// Required: No, but recommended
	// Stability: stable
	// Examples: 'exampleMethod'
	// Note: This is the logical name of the method from the RPC interface
	// perspective, which can be different from the name of any implementing
	// method/function. The code.function attribute may be used to store the latter
	// (e.g., method actually executing the call on the server side, RPC client stub
	// method on the client side).
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCMethod = "rpc.method"
)

This document defines semantic conventions for remote procedure calls.

View Source
const (
	// OK
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeOk = "0"
	// CANCELLED
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeCancelled = "1"
	// UNKNOWN
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeUnknown = "2"
	// INVALID_ARGUMENT
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeInvalidArgument = "3"
	// DEADLINE_EXCEEDED
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeDeadlineExceeded = "4"
	// NOT_FOUND
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeNotFound = "5"
	// ALREADY_EXISTS
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeAlreadyExists = "6"
	// PERMISSION_DENIED
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodePermissionDenied = "7"
	// RESOURCE_EXHAUSTED
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeResourceExhausted = "8"
	// FAILED_PRECONDITION
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeFailedPrecondition = "9"
	// ABORTED
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeAborted = "10"
	// OUT_OF_RANGE
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeOutOfRange = "11"
	// UNIMPLEMENTED
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeUnimplemented = "12"
	// INTERNAL
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeInternal = "13"
	// UNAVAILABLE
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeUnavailable = "14"
	// DATA_LOSS
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeDataLoss = "15"
	// UNAUTHENTICATED
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCodeUnauthenticated = "16"
)
View Source
const (
	// Protocol version as in jsonrpc property of request/response. Since JSON-RPC 1.0
	// does not specify this, the value can be omitted.
	//
	// Type: string
	// Required: If missing, it is assumed to be "1.0".
	// Stability: stable
	// Examples: '2.0', '1.0'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCJsonrpcVersion = "rpc.jsonrpc.version"
	// id property of request or response. Since protocol allows id to be int, string,
	// null or missing (for notifications), value is expected to be cast to string for
	// simplicity. Use empty string in case of null value. Omit entirely if this is a
	// notification.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: '10', 'request-7', ”
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCJsonrpcRequestID = "rpc.jsonrpc.request_id"
	// error.code property of response if it is an error response.
	//
	// Type: int
	// Required: If missing, response is assumed to be successful.
	// Stability: stable
	// Examples: -32700, 100
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCJsonrpcErrorCode = "rpc.jsonrpc.error_code"
	// error.message property of response if it is an error response.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'Parse error', 'User already exists'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCJsonrpcErrorMessage = "rpc.jsonrpc.error_message"
)

Tech-specific attributes for [JSON RPC](https://www.jsonrpc.org/).

View Source
const (
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	InstrumentationLibraryName = "otel.library.name"
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	InstrumentationLibraryVersion = "otel.library.version"
)
View Source
const (
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	OtelStatusCode = "otel.status_code"
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	OtelStatusDescription = "otel.status_description"
)
View Source
const (
	// The value of the ScanIndexForward request parameter.
	//
	// Type: boolean
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSDynamoDBScanForward = "aws.dynamodb.scan_forward"
)

DynamoDB.Query

View Source
const (
	// The ARN of an EKS cluster.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'arn:aws:ecs:us-west-2:123456789123:cluster/my-cluster'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSEKSClusterARN = "aws.eks.cluster.arn"
)

Resources used by AWS Elastic Kubernetes Service (EKS).

View Source
const (
	// The full invoked ARN as provided on the Context passed to the function (Lambda-
	// Runtime-Invoked-Function-ARN header on the /runtime/invocation/next
	// applicable).
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'arn:aws:lambda:us-east-1:123456:function:myfunction:myalias'
	// Note: This may be different from faas.id if an alias is involved.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeAWSLambdaInvokedARN = "aws.lambda.invoked_arn"
)

Span attributes used by AWS Lambda (in addition to general `faas` attributes).

View Source
const (
	// The HBase namespace being accessed. To be used instead of the generic db.name
	// attribute.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'default'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBHBaseNamespace = "db.hbase.namespace"
)

Call-level attributes for Apache HBase

View Source
const (
	// The Microsoft SQL Server instance name connecting to. This name is used to
	// determine the port of a named instance.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'MSSQLSERVER'
	// Note: If setting a db.mssql.instance_name, net.peer.port is no longer required
	// (but still recommended if non-standard).
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBMSSQLInstanceName = "db.mssql.instance_name"
)

Connection-level attributes for Microsoft SQL Server

View Source
const (
	// The collection being accessed within the database stated in db.name.
	//
	// Type: string
	// Required: Always
	// Stability: stable
	// Examples: 'customers', 'products'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBMongoDBCollection = "db.mongodb.collection"
)

Call-level attributes for MongoDB

View Source
const (
	// The index of the database being accessed as used in the SELECT command,
	// provided as an integer. To be used instead of the generic db.name attribute.
	//
	// Type: int
	// Required: Required, if other than the default database (`0`).
	// Stability: stable
	// Examples: 0, 1, 15
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBRedisDBIndex = "db.redis.database_index"
)

Call-level attributes for Redis

View Source
const (
	// The name of the primary table that the operation is acting upon, including the
	// schema name (if applicable).
	//
	// Type: string
	// Required: Recommended if available.
	// Stability: stable
	// Examples: 'public.users', 'customers'
	// Note: It is not recommended to attempt any client-side parsing of db.statement
	// just to get this property, but it should be set if it is provided by the
	// library being instrumented. If the operation is acting upon an anonymous table,
	// or more than one table, this value MUST NOT be set.
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDBSQLTable = "db.sql.table"
)

Call-level attrbiutes for SQL databases

View Source
const (
	// Name of the deployment environment (aka deployment tier).
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'staging', 'production'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeDeploymentEnvironment = "deployment.environment"
)

The software deployment.

View Source
const (
	// A boolean that is true if the serverless function is executed for the first
	// time (aka cold-start).
	//
	// Type: boolean
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeFaaSColdstart = "faas.coldstart"
)

Contains additional attributes for incoming FaaS spans.

View Source
const (
	// The name of the cluster.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'opentelemetry-cluster'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SClusterName = "k8s.cluster.name"
)

A Kubernetes Cluster.

View Source
const (
	// The name of the Container in a Pod template.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'redis'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SContainerName = "k8s.container.name"
)

A container in a [PodTemplate](https://kubernetes.io/docs/concepts/workloads/pods/#pod-templates).

View Source
const (
	// The name of the namespace that the pod is running in.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'default'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeK8SNamespaceName = "k8s.namespace.name"
)

A Kubernetes Namespace.

View Source
const (
	// A string identifying the kind of message consumption as defined in the
	// Operation names section above. If the operation is &quot;send&quot;, this
	// attribute MUST NOT be set, since the operation can be inferred from the span
	// kind in that case.
	//
	// Type: Enum
	// Required: No
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingOperation = "messaging.operation"
)

Semantic convention for a consumer of messages received from a messaging system

View Source
const (
	// RabbitMQ message routing key.
	//
	// Type: string
	// Required: Unless it is empty.
	// Stability: stable
	// Examples: 'myKey'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeMessagingRabbitmqRoutingKey = "messaging.rabbitmq.routing_key"
)

Attributes for RabbitMQ

View Source
const (
	// The service.name of the remote service. SHOULD be equal to the actual
	// service.name resource attribute of the remote service if any.
	//
	// Type: string
	// Required: No
	// Stability: stable
	// Examples: 'AuthTokenCache'
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributePeerService = "peer.service"
)

Operations that access some remote service.

View Source
const (
	// The numeric status code of the gRPC request.
	//
	// Type: Enum
	// Required: Always
	// Stability: stable
	// Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.
	AttributeRPCGRPCStatusCode = "rpc.grpc.status_code"
)

Tech-specific attributes for gRPC.

View Source
const SchemaURL = "https://opentelemetry.io/schemas/1.5.0"

SchemaURL is the schema URL that matches the version of the semantic conventions that this package defines. Conventions packages starting from v1.4.0 must declare non-empty schema URL in the form https://opentelemetry.io/schemas/<version> Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.

Variables

This section is empty.

Functions

func GetResourceSemanticConventionAttributeNames deprecated

func GetResourceSemanticConventionAttributeNames() []string

Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.

func GetTraceSemanticConventionAttributeNames deprecated

func GetTraceSemanticConventionAttributeNames() []string

Deprecated: [v0.50.0] Use go.opentelemetry.io/collector/semconv module.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL