otlp Exporter
TelemetryExporters
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/v1/metrics
Configuration
Properties
* required
options
object
otlp
-specific options.
options:
interval: 30
signals:
- logs
- metrics
endpoint:
protocol: http
location: http://otlp-collector:4318/v1/metrics
options.interval
integer
| Default:30
Interval in seconds to push data to the collector.
options.signals
array
ofenum
[ "logs", "metrics" ]
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
string
Specifies the protocol to use for exporting data. Currently only http
is supported. The default is http
.
endpoint.location*
string
The URL of the collector.
* required