Skip to content

Commit 7e4d9dc

Browse files
Add Kafka receiver and exporter to core components (#10988)
Signed-off-by: Alexander Wert <[email protected]>
1 parent 1144501 commit 7e4d9dc

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
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: other
12+
13+
# Change summary; a 80ish characters long description of the change.
14+
summary: Promote Kafka receiver and exporter components to core / supported EDOT Collector components.
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: elastic-agent
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/10988
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

internal/pkg/otel/components.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,13 @@ core_components:
3232
- hostmetricsreceiver
3333
- k8sclusterreceiver
3434
- k8sobjectsreceiver
35+
- kafkareceiver
3536
- kubeletstatsreceiver
3637
- otlpreceiver
3738

3839
# Exporters
3940
- elasticsearchexporter
41+
- kafkaexporter
4042
- otlpexporter
4143
- otlphttpexporter
4244

@@ -104,4 +106,14 @@ annotations:
104106
# elasticsearchexporter:
105107
# comment: |
106108
# Some Elasticsearch modes, such as `raw`, are not covered by Elastic Support.
107-
109+
kafkareceiver:
110+
comment: |
111+
The following features and configuration options are **NOT** officially supported in the EDOT Collector with the Kafka receiver:
112+
- Encoding options other than `otlp_proto` or `otlp_json`
113+
- Using the Sarama client (i.e. opting out of the `exporter.kafkaexporter.UseFranzGo` feature gate is not supported)
114+
kafkaexporter:
115+
comment: |
116+
The following features and configuration options are **NOT** officially supported in the EDOT Collector with the Kafka receiver:
117+
- Encoding options other than `otlp_proto` or `otlp_json`
118+
- Using the Sarama client (i.e. opting out of the `exporter.kafkaexporter.UseFranzGo` feature gate is not supported)
119+
- Partitioning configuration (i.e. `partition_*` options).

0 commit comments

Comments
 (0)