opentelemetry-collector/exporter
Tyler Helmuth 1ad6912e6c
[chore] Prepare release v1.29.0/v0.123.0 (#12773)
The following commands were run to prepare this release:

make chlog-update VERSION=v1.29.0/v0.123.0
make prepare-release PREVIOUS_VERSION=1.28.1 RELEASE_CANDIDATE=1.29.0
MODSET=stable
make prepare-release PREVIOUS_VERSION=0.122.1 RELEASE_CANDIDATE=0.123.0
MODSET=beta
2025-03-31 18:44:04 +00:00
..
debugexporter [chore] Prepare release v1.29.0/v0.123.0 (#12773) 2025-03-31 18:44:04 +00:00
exporterbatcher Deprecate SizeConfig as well from exporterhelper (#12749) 2025-03-27 18:21:45 +00:00
exporterhelper [chore] Prepare release v1.29.0/v0.123.0 (#12773) 2025-03-31 18:44:04 +00:00
exporterqueue Add batching capability to the old QueueConfig (#12746) 2025-03-26 23:56:07 +00:00
exportertest [chore] Prepare release v1.29.0/v0.123.0 (#12773) 2025-03-31 18:44:04 +00:00
internal/experr [chore] Move exporter/internal to exporterhelper/internal when possible (#12683) 2025-03-20 16:08:31 +00:00
nopexporter [chore] Prepare release v1.29.0/v0.123.0 (#12773) 2025-03-31 18:44:04 +00:00
otlpexporter [chore] Prepare release v1.29.0/v0.123.0 (#12773) 2025-03-31 18:44:04 +00:00
otlphttpexporter [chore] Prepare release v1.29.0/v0.123.0 (#12773) 2025-03-31 18:44:04 +00:00
xexporter [chore] Prepare release v1.29.0/v0.123.0 (#12773) 2025-03-31 18:44:04 +00:00
Makefile split exporter into its own module (#7240) 2023-03-03 13:13:16 -08:00
README.md [chore] Added spell check (#12671) 2025-03-20 18:53:25 +00:00
exporter.go [connector,exporter,processor,receiver] Error out on mismatched type (#12381) 2025-02-27 12:24:18 +00:00
exporter_test.go [connector,exporter,processor,receiver] Error out on mismatched type (#12381) 2025-02-27 12:24:18 +00:00
go.mod [chore] Prepare release v1.29.0/v0.123.0 (#12773) 2025-03-31 18:44:04 +00:00
go.sum Inject component-identifying scope attributes (#12617) 2025-03-28 12:15:25 +00:00
package_test.go [chore] remove unused opencensus code (#9108) 2024-01-30 10:19:42 -08:00

README.md

General Information

An exporter defines how the pipeline data leaves the collector.

This repository hosts the following exporters available in traces, metrics and logs pipelines (sorted alphabetically):

The contrib repository has more exporters available in its builds.

Configuring Exporters

Exporters are configured via YAML under the top-level exporters tag.

The following is a sample configuration for the exampleexporter.

exporters:
  # Exporter 1.
  # <exporter type>:
  exampleexporter:
    # <setting one>: <value one>
    endpoint: 1.2.3.4:8080
    # ...
  # Exporter 2.
  # <exporter type>/<name>:
  exampleexporter/settings:
    # <setting two>: <value two>
    endpoint: 0.0.0.0:9211

An exporter instance is referenced by its full name in other parts of the config, such as in pipelines. A full name consists of the exporter type, '/' and the name appended to the exporter type in the configuration. All exporter full names must be unique.

For the example above:

  • Exporter 1 has full name exampleexporter.
  • Exporter 2 has full name exampleexporter/settings.

Exporters are enabled upon being added to a pipeline. For example:

service:
  pipelines:
    # Valid pipelines are: traces, metrics or logs
    # Trace pipeline 1.
    traces:
      receivers: [examplereceiver]
      processors: []
      exporters: [exampleexporter, exampleexporter/settings]
    # Trace pipeline 2.
    traces/another:
      receivers: [examplereceiver]
      processors: []
      exporters: [exampleexporter, exampleexporter/settings]

Data Ownership

When multiple exporters are configured to send the same data (e.g. by configuring multiple exporters for the same pipeline):

  • exporters not configured to mutate the data will have shared access to the data
  • exporters with the Capabilities to mutate the data will receive a copy of the data

Exporters access export data when ConsumeTraces/ConsumeMetrics/ConsumeLogs function is called. Unless exporter's capabilities include mutation, the exporter MUST NOT modify the pdata.Traces/pdata.Metrics/pdata.Logs argument of these functions. Any approach that does not mutate the original pdata.Traces/pdata.Metrics/pdata.Logs is allowed without the mutation capability.

Proxy Support

Beyond standard YAML configuration as outlined in the individual READMEs above, exporters that leverage the net/http package (all do today) also respect the following proxy environment variables:

  • HTTP_PROXY
  • HTTPS_PROXY
  • NO_PROXY

If set at Collector start time then exporters, regardless of protocol, will or will not proxy traffic as defined by these environment variables.