Skip to content

Commit 521aa7c

Browse files
committed
Bump to 1.41.1 so we can drop our own metrics filtering
1 parent b640ec0 commit 521aa7c

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6464
([#5151](https://github.com/open-telemetry/opentelemetry-python/pull/5151))
6565
- `opentelemetry-api`, `opentelemetry-sdk`: add support for 'random-trace-id' flags in W3C traceparent header trace flags. Implementations of `IdGenerator` that do randomly generate the 56 least significant bits, should also implement a `is_trace_id_random` methods that returns `True`.
6666
([#4854](https://github.com/open-telemetry/opentelemetry-python/pull/4854))
67-
- `opentelemetry-semantic-conventions`: Bump semantic conventions to 1.41.0, this changes the metrics name of `K8S_CONTAINER_CPU_LIMIT_UTILIZATION` and `K8S_CONTAINER_CPU_REQUEST_UTILIZATION`.
67+
- `opentelemetry-semantic-conventions`: Bump semantic conventions to 1.41.1, this changes the metrics name of `K8S_CONTAINER_CPU_LIMIT_UTILIZATION` and `K8S_CONTAINER_CPU_REQUEST_UTILIZATION`.
6868
([#5200](https://github.com/open-telemetry/opentelemetry-python/pull/5200))
6969

7070
## Version 1.41.0/0.62b0 (2026-04-09)

opentelemetry-semantic-conventions/src/opentelemetry/semconv/schemas.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,5 +94,10 @@ class Schemas(Enum):
9494
The URL of the OpenTelemetry schema version 1.41.0.
9595
"""
9696

97+
V1_41_1 = "https://opentelemetry.io/schemas/1.41.1"
98+
"""
99+
The URL of the OpenTelemetry schema version 1.41.1.
100+
"""
101+
97102
# when generating new semantic conventions,
98103
# make sure to add new versions version here.

scripts/semconv/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
55
ROOT_DIR="${SCRIPT_DIR}/../.."
66

77
# freeze the spec version to make SemanticAttributes generation reproducible
8-
SEMCONV_VERSION=1.41.0
8+
SEMCONV_VERSION=1.41.1
99
SEMCONV_VERSION_TAG=v$SEMCONV_VERSION
1010
OTEL_WEAVER_IMG_VERSION=v0.23.0
1111
INCUBATING_DIR=_incubating

scripts/semconv/templates/registry/weaver.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ params:
77
excluded_attributes: ["messaging.client_id"]
88

99
# excluded metrics will be excluded from the generated code in jinja templates
10-
excluded_metrics: ["k8s.container.cpu.limit_utilization", "k8s.container.cpu.request_utilization"]
10+
excluded_metrics: []
1111

1212
stable_package_name: opentelemetry.semconv
1313

0 commit comments

Comments
 (0)