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
instance which allows the collector to use the Beat SSL settings and underlying HTTP transport to guarantee the behavior is the same as before.
90
+
Similarly, when using the Elasticsearch output an [elasticsearch exporter](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/elasticsearchexporter)
91
+
instance is generated with a configuration equivalent to the previous Elasticsearch output in Beats using the `bodymap` mapping mode to
92
+
continue to generate ECS documents.
93
+
94
+
The changes in https://github.com/elastic/elastic-agent/pull/10992 added a way to override or extend the translated beatsauth extension and
95
+
elasticsearch exporter parameters in case there is a problem or bug with the translation process. For example:
96
+
97
+
```yaml
98
+
outputs:
99
+
default:
100
+
type: elasticsearch
101
+
hosts: [127.0.0.1:9200]
102
+
api_key: "example-key"
103
+
otel:
104
+
extensions:
105
+
beatsauth:
106
+
timeout: "60s" # Override the connection timeout from the translated value.
107
+
exporter:
108
+
include_source_on_error: false # Override the generated value of include_source_on_error.
109
+
```
110
+
73
111
## Hybrid Agent
74
112
75
113
**Hybrid Agent** refers the capability of Elastic Agent to run OpenTelemetry collector pipelines specified directly in
0 commit comments