otlp Exporter
TelemetryExportersotlp
otlp Exporter
The Zilla runtime OpenTelemetry Protocol exporter publishes data to a Collector.
exporters:
otlp:
type: otlp
options:
interval: 30
signals:
- metrics
endpoint:
protocol: http
location: http://otlp-collector:4318
Configuration (* required)
options*
object
The otlp
specific options.
options:
interval: 30
signals:
- logs
- metrics
endpoint:
protocol: http
location: http://otlp-collector:4318
options.interval
number
| Default:30
Interval in seconds to push data to the collector.
options.signals
array
ofenum
[metrics
,logs
]
Specifies what signals should be exported. The default behavior is to export all supported signals.
options.endpoint*
object
Contains details for the OpenTelemetry Protocol collector endpoint.
endpoint.protocol
enum
[http
] | Default:http
Specifies the protocol to use for exporting data for exporting data to the OTEL Collector.
endpoint.location*
string
The URI for the collector endpoint.
endpoint.overrides
object
The options for overriding the endpoint for each signal type.
overrides.logs
string
| Default:/v1/logs
The logs
signal endpoint URI.
overrides.metrics
string
| Default:/v1/metrics
The metrics
signal endpoint URI.