Skip to content

Commit

Permalink
Introduce EKS cluster semantic conventions (#1484)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakyll committed Mar 8, 2021
1 parent e0d9022 commit 3721585
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ release.
- Rename `gcp_gke` to `gcp_kubernetes_engine` to have consistency with other
Google products under `cloud.infrastructure_service` ([#1496](https://github.com/open-telemetry/opentelemetry-specification/pull/1496))
- `http.url` MUST NOT contain credentials ([#1502](https://github.com/open-telemetry/opentelemetry-specification/pull/1502))
- Add `aws.eks.cluster.arn` to EKS specific semantic conventions ([#1484](https://github.com/open-telemetry/opentelemetry-specification/pull/1484))

## v1.0.1 (2021-02-11)

Expand Down
11 changes: 11 additions & 0 deletions semantic_conventions/resource/cloud_provider/aws/eks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
groups:
- id: aws.eks
prefix: aws.eks
brief: >
Resources used by AWS Elastic Kubernetes Service (EKS).
attributes:
- id: cluster.arn
type: string
brief: >
The ARN of an EKS cluster.
examples: ['arn:aws:ecs:us-west-2:123456789123:cluster/my-cluster']
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ services within AWS or are abstracted away from any particular service:

Attributes that relate to an individual AWS service:

- [Elastic Container Service](./ecs.md)
- [Elastic Container Service (ECS)](./ecs.md)
- [Elastic Kubernetes Service (EKS)](./eks.md)
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# AWS EKS

**Status**: [Experimental](../../../../document-status.md)

**type:** `aws.eks`

**Description:** Resources used by AWS Elastic Kubernetes Service (EKS).

<!-- semconv aws.eks -->
| Attribute | Type | Description | Examples | Required |
|---|---|---|---|---|
| `aws.eks.cluster.arn` | string | The ARN of an EKS cluster. | `arn:aws:ecs:us-west-2:123456789123:cluster/my-cluster` | No |
<!-- endsemconv -->

0 comments on commit 3721585

Please sign in to comment.