go.opencensus.iogo.opencensus.io/resource/resourcekeys Index | Files

package resourcekeys

import "go.opencensus.io/resource/resourcekeys"

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

Index

Constants

const (
	K8SType = "k8s"

	// 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 (
	ContainerType = "container"

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

Constants for Container resources.

const (
	CloudType = "cloud"

	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 (
	HostType = "host"

	// 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"
)

Constants for Host resources.

Source Files

const.go

Version
v0.24.0 (latest)
Published
Nov 3, 2022
Platform
linux/amd64
Last checked
6 hours ago

Tools for package owners.