opentelemetry-collector
opentelemetry-collector copied to clipboard
OpenTelemetry Collector
… #### Description Add `read_timeout` and `read_header_timeout` options to confighttp, to use as HTTP server config options. #### Link to tracking issue Fixes #5699 #### Testing #### Documentation Added to...
**Is your feature request related to a problem? Please describe.** For an exporter that uses exporterhelper, I have the following requirements. - When a data item is consumed by the...
**Describe the bug** I have a component (processor) that fails to start due to misconfiguration of the pipeline. **Steps to reproduce** A processor whose Start method returns an error. **What...
**Is your feature request related to a problem? Please describe.** `mdatagen` currently generates `goleak` checks for packages when enabled. However, it only adds `goleak` checks for the top level directory...
**Describe the bug** I am using open-collector Kubernetes to collect the application traces, metrics, logs via OTLP. ``` otel-collector: image: otel/opentelemetry-collector-contrib:latest command: ["--config=/etc/otel-collector-config.yml"] volumes: - ./otel-collector-config.yml:/etc/otel-collector-config.yml ports: - "1888:1888" #...
This removes the configuration of the OpenCensus bridge from the Collector. This means that any metric still relying on it will no longer be emitting metrics. Closes #10414 This is...
This will enable us to close the loop on many goleak exceptions that are in place today. Additionally it will allow us to move the meter provider configuration code to...
This will be used when moving the meter provider configuration to use the otel-go config package. Part of #10414 Skipping changelog as there's no usage of this method yet. It...
#### Description Updates the default `pick_first` load balancer to `round_robin`, which allows for better resource allocation and less chances of throttling data being sent to addresses. #### Link to tracking...
**Describe the bug** The `batch` processor is not limiting batch size by bytes, but rather by item count. I believe this is due to confusing nomenclature, let me try to...