Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce EKS cluster semantic conventions #1484

Merged
merged 5 commits into from
Mar 8, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ release.
- Add [`ForceFlush`](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk.md#forceflush) to SDK's `TracerProvider` ([#1452](https://github.com/open-telemetry/opentelemetry-specification/pull/1452))
- Add `elasticsearch` to `db.system` semantic conventions ([#1463](https://github.com/open-telemetry/opentelemetry-specification/pull/1463))
- Add `runtime` to `container` semantic conventions ([#1482](https://github.com/open-telemetry/opentelemetry-specification/pull/1482))
- 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 -->