diff --git a/.chloggen/disableAddressFieldForInternalTelemetry.yaml b/.chloggen/disableAddressFieldForInternalTelemetry.yaml new file mode 100644 index 00000000000..9eb27a612b4 --- /dev/null +++ b/.chloggen/disableAddressFieldForInternalTelemetry.yaml @@ -0,0 +1,25 @@ +# Use this changelog template to create an entry for release notes. + +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' +change_type: breaking + +# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver) +component: service/telemetry + +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). +note: Mark `telemetry.disableAddressFieldForInternalTelemetry` as beta, usage of deprecated service::telemetry::address are ignored + +# One or more tracking issues or pull requests related to the change +issues: [25115] + +# (Optional) One or more lines of additional information to render under the primary note. +# These lines will be padded with 2 spaces and then inserted directly into the document. +# Use pipe (|) for multiline entries. +subtext: To restore the previous behavior disable `telemetry.disableAddressFieldForInternalTelemetry` feature gate. + +# Optional: The change log or logs in which this entry should be included. +# e.g. '[user]' or '[user, api]' +# Include 'user' if the change is relevant to end users. +# Include 'api' if there is a change to a library API. +# Default: '[user]' +change_logs: [user] diff --git a/service/telemetry/config.go b/service/telemetry/config.go index 8cd07b4e7ef..2a91179932b 100644 --- a/service/telemetry/config.go +++ b/service/telemetry/config.go @@ -21,9 +21,9 @@ var _ confmap.Unmarshaler = (*Config)(nil) var disableAddressFieldForInternalTelemetryFeatureGate = featuregate.GlobalRegistry().MustRegister( "telemetry.disableAddressFieldForInternalTelemetry", - featuregate.StageAlpha, + featuregate.StageBeta, featuregate.WithRegisterFromVersion("v0.111.0"), - featuregate.WithRegisterToVersion("v0.114.0"), + featuregate.WithRegisterToVersion("v0.123.0"), featuregate.WithRegisterDescription("controls whether the deprecated address field for internal telemetry is still supported")) // Config defines the configurable settings for service telemetry.