Skip to content

Latest commit

 

History

History

jaegerthrifthttpexporter

Jaeger Thrift Exporter

This exporter supports sending trace data to Jaeger over Thrift HTTP.

Supported pipeline types: traces

Configuration

The following settings are required:

  • url (no default): target to which the exporter is going to send Jaeger trace data, using the Thrift HTTP protocol.

The following settings can be optionally configured:

  • timeout (default = 5s): the maximum time to wait for a HTTP request to complete
  • headers (no default): headers to be added to the HTTP request

Example:

exporters:
  jaeger_thrift:
    url: "https://some.other.location/api/traces"
    timeout: 2s
    headers:
      added-entry: "added value"
      dot.test: test

The full list of settings exposed for this exporter are documented here with detailed sample configurations here.

This exporter also offers proxy support as documented here.