otelgo.opentelemetry.io/otel/sdk/resource/resourcekeys Index | Files

package resourcekeys

import "go.opentelemetry.io/otel/sdk/resource/resourcekeys"

Package resourcekeys contains well known type and label keys for resources.

Index

Constants

const (
	// A uniquely identifying name for a Service.
	ServiceKeyName       = "service.name"
	ServiceKeyNamespace  = "service.namespace"
	ServiceKeyInstanceID = "service.instance.id"
	ServiceKeyVersion    = "service.version"
)

Constants for Service resources.

const (
	// A uniquely identifying name for a Library.
	LibraryKeyName     = "library.name"
	LibraryKeyLanguage = "library.language"
	LibraryKeyVersion  = "library.version"
)

Constants for Library resources.

const (
	// A uniquely identifying name for the Kubernetes cluster. Kubernetes
	// does not have cluster names as an internal concept so this may be
	// set to any meaningful value within the environment. For example,
	// GKE clusters have a name which can be used for this label.
	K8SKeyClusterName    = "k8s.cluster.name"
	K8SKeyNamespaceName  = "k8s.namespace.name"
	K8SKeyPodName        = "k8s.pod.name"
	K8SKeyDeploymentName = "k8s.deployment.name"
)

Constants for Kubernetes resources.

const (
	// A uniquely identifying name for the Container.
	ContainerKeyName      = "container.name"
	ContainerKeyImageName = "container.image.name"
	ContainerKeyImageTag  = "container.image.tag"
)

Constants for Container resources.

const (
	CloudKeyProvider  = "cloud.provider"
	CloudKeyAccountID = "cloud.account.id"
	CloudKeyRegion    = "cloud.region"
	CloudKeyZone      = "cloud.zone"

	// Cloud Providers
	CloudProviderAWS   = "aws"
	CloudProviderGCP   = "gcp"
	CloudProviderAZURE = "azure"
)

Constants for Cloud resources.

const (
	// A uniquely identifying name for the host.
	HostKeyName = "host.name"

	// A hostname as returned by the 'hostname' command on host machine.
	HostKeyHostName     = "host.hostname"
	HostKeyID           = "host.id"
	HostKeyType         = "host.type"
	HostKeyImageName    = "host.image.name"
	HostKeyImageID      = "host.image.id"
	HostKeyImageVersion = "host.image.version"
)

Constants for Host resources.

Source Files

const.go

Version
v0.3.0
Published
Mar 21, 2020
Platform
linux/amd64
Last checked
6 minutes ago

Tools for package owners.