Skip to content

Commit

Permalink
[exporter/prometheusremotewrite] change feature gate to beta (open-te…
Browse files Browse the repository at this point in the history
…lemetry#36606)

#### Description

Change `exporter.prometheusremotewriteexporter.deprecateCreatedMetric`
feature gate from Alpha to Beta

#### Link to tracking issue

open-telemetry#35003

---------

Co-authored-by: David Ashpole <dashpole@google.com>
  • Loading branch information
2 people authored and ZenoCC-Peng committed Dec 6, 2024
1 parent 52c928a commit c444a93
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Use this changelog template to create an entry for release notes.

# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: deprecation

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: exporter/prometheusremotewrite

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Change `exporter.prometheusremotewriteexporter.deprecateCreatedMetric` feature gate from Alpha to Beta version.

# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
issues: [35003]

# (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: The `export_created_metric` configuration parameter is now ignored by default.

# If your change doesn't affect end users or the exported elements of any package,
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
# 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]
2 changes: 1 addition & 1 deletion pkg/translator/prometheusremotewrite/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const (

var exportCreatedMetricGate = featuregate.GlobalRegistry().MustRegister(
"exporter.prometheusremotewriteexporter.deprecateCreatedMetric",
featuregate.StageAlpha,
featuregate.StageBeta,
featuregate.WithRegisterDescription("Feature gate used to control the deprecation of created metrics."),
featuregate.WithRegisterReferenceURL("https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/35003"),
)
Expand Down

0 comments on commit c444a93

Please sign in to comment.