Skip to content

Commit 237098e

Browse files
committed
Add changelog.
1 parent f34035b commit 237098e

File tree

7 files changed

+43
-11
lines changed

7 files changed

+43
-11
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Kind can be one of:
2+
# - breaking-change: a change to previously-documented behavior
3+
# - deprecation: functionality that is being removed in a later release
4+
# - bug-fix: fixes a problem in a previous version
5+
# - enhancement: extends functionality but does not break or fix existing behavior
6+
# - feature: new functionality
7+
# - known-issue: problems that we are aware of in a given version
8+
# - security: impacts on the security of a product or a user’s deployment.
9+
# - upgrade: important information for someone upgrading from a prior version
10+
# - other: does not fit into any of the other categories
11+
kind: deprecation
12+
13+
# Change summary; a 80ish characters long description of the change.
14+
summary: Deprecate the elasticinframetrics processor. It will be removed in 9.2.0.
15+
16+
# Long description; in case the summary is not enough to describe the change
17+
# this field accommodate a description without length limits.
18+
# NOTE: This field will be rendered only for breaking-change and known-issue kinds at the moment.
19+
#description:
20+
21+
# Affected component; usually one of "elastic-agent", "fleet-server", "filebeat", "metricbeat", "auditbeat", "all", etc.
22+
component: "edot"
23+
24+
# PR URL; optional; the PR number that added the changeset.
25+
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added.
26+
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number.
27+
# Please provide it if you are adding a fragment for a different PR.
28+
pr: https://github.com/elastic/elastic-agent/pull/8659
29+
30+
# Issue URL; optional; the GitHub issue related to this changeset (either closes or is part of).
31+
# If not present is automatically filled by the tooling with the issue linked to the PR number.
32+
#issue: https://github.com/owner/repo/1234

deploy/helm/edot-collector/kube-stack/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -536,10 +536,10 @@ collectors:
536536
processors:
537537
# [Elastic Infra Metrics Processor](https://github.com/elastic/opentelemetry-collector-components/tree/main/processor/elasticinframetricsprocessor)
538538
# DEPRECATED: The elasticinframetrics processor is deprecated and will be removed in 9.2.0.
539-
# elasticinframetrics:
540-
# add_system_metrics: true
541-
# add_k8s_metrics: true
542-
# drop_original: true
539+
elasticinframetrics:
540+
add_system_metrics: true
541+
add_k8s_metrics: true
542+
drop_original: true
543543
# [Attributes Processor](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/attributesprocessor)
544544
attributes/dataset:
545545
actions:

internal/pkg/otel/samples/darwin/logs_metrics_traces.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ connectors:
5050

5151
processors:
5252
# DEPRECATED: The elasticinframetrics processor is deprecated and will be removed in 9.2.0.
53-
# elasticinframetrics:
53+
elasticinframetrics:
5454
resourcedetection:
5555
detectors: ["system"]
5656
system:

internal/pkg/otel/samples/darwin/platformlogs_hostmetrics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ extensions:
4141

4242
processors:
4343
# DEPRECATED: The elasticinframetrics processor is deprecated and will be removed in 9.2.0.
44-
# elasticinframetrics:
44+
elasticinframetrics:
4545
resourcedetection:
4646
detectors: ["system"]
4747
system:

internal/pkg/otel/samples/linux/gateway.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ connectors:
2121

2222
processors:
2323
# DEPRECATED: The elasticinframetrics processor is deprecated and will be removed in 9.2.0.
24-
# elasticinframetrics:
25-
# add_system_metrics: true
26-
# drop_original: true
24+
elasticinframetrics:
25+
add_system_metrics: true
26+
drop_original: true
2727
attributes/dataset:
2828
actions:
2929
- key: event.dataset

internal/pkg/otel/samples/linux/logs_metrics_traces.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ connectors:
5757

5858
processors:
5959
# DEPRECATED: The elasticinframetrics processor is deprecated and will be removed in 9.2.0.
60-
# elasticinframetrics:
60+
elasticinframetrics:
6161
resourcedetection:
6262
detectors: ["system"]
6363
system:

internal/pkg/otel/samples/linux/platformlogs_hostmetrics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ extensions:
4848

4949
processors:
5050
# DEPRECATED: The elasticinframetrics processor is deprecated and will be removed in 9.2.0.
51-
# elasticinframetrics:
51+
elasticinframetrics:
5252
resourcedetection:
5353
detectors: ["system"]
5454
system:

0 commit comments

Comments
 (0)