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
Copy file name to clipboardExpand all lines: _data-prepper/pipelines/configuration/sources/otel-trace-source.md
+130-4Lines changed: 130 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,22 +43,148 @@ To use the `otel-metrics` source, create the following `pipeline.yaml` file with
43
43
44
44
```yaml
45
45
source:
46
-
- otel_trace_source:
46
+
otel_trace_source:
47
47
```
48
48
{% include copy.html %}
49
49
50
50
If you want to use the OpenTelemetry format for your output, set the `output_format` to `otel`, as shown in the following example:
51
51
52
52
```yaml
53
53
source:
54
-
- otel_trace_source:
55
-
output_format: otel
54
+
otel_trace_source:
55
+
output_format: otel
56
56
```
57
57
{% include copy.html %}
58
58
59
+
## Example
60
+
61
+
The following example shows Data Prepper ingesting OTLP traces over HTTPS using a PEM certificate and key with unframed HTTP at a custom path, accepting gzip-compressed payloads, preserving OpenTelemetry document structure, and indexing them into OpenSearch:
0 commit comments