You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
#### Description
This adds profiles support to the kafka receiver.
Related: the exporter PR:
open-telemetry#41369
@@ -48,6 +50,9 @@ The following settings can be optionally configured:
48
50
-`traces`
49
51
-`topic` (default = otlp\_spans): The name of the Kafka topic from which to consume traces.
50
52
-`encoding` (default = otlp\_proto): The encoding for the Kafka topic. See [Supported encodings](#supported-encodings).
53
+
-`profiles`
54
+
-`topic` (default = otlp\_profiles): The name of the Kafka topic from which to consume profiles.
55
+
-`encoding` (default = otlp\_proto): The encoding for the Kafka topic. See [Supported encodings](#supported-encodings).
51
56
-`topic` (Deprecated [v0.124.0]: use `logs::topic`, `traces::topic`, or `metrics::topic`).
52
57
If this is set, it will take precedence over the default value for those fields.
53
58
-`encoding` (Deprecated [v0.124.0]: use `logs::encoding`, `traces::encoding`, or `metrics::encoding`).
@@ -109,10 +114,10 @@ The following settings can be optionally configured:
109
114
**Note: this can block the entire partition in case a message processing returns a permanent error**
110
115
-`header_extraction`:
111
116
-`extract_headers` (default = false): Allows user to attach header fields to resource attributes in otel pipeline
112
-
-`headers` (default = []): List of headers they'd like to extract from kafka record.
113
-
**Note: Matching pattern will be `exact`. Regexes are not supported as of now.**
117
+
-`headers` (default = []): List of headers they'd like to extract from kafka record.
118
+
**Note: Matching pattern will be `exact`. Regexes are not supported as of now.**
114
119
-`error_backoff`: [BackOff](https://github.com/open-telemetry/opentelemetry-collector/blob/v0.116.0/config/configretry/backoff.go#L27-L43) configuration in case of errors
115
-
-`enabled`: (default = false) Whether to enable backoff when next consumers return errors
120
+
-`enabled`: (default = false) Whether to enable backoff when next consumers return errors
116
121
-`initial_interval`: The time to wait after the first error before retrying
117
122
-`max_interval`: The upper bound on backoff interval between consecutive retries
118
123
-`multiplier`: The value multiplied by the backoff interval bounds
@@ -190,7 +195,7 @@ be configured to extract and attach specific headers as resource attributes. e.g
0 commit comments