Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[receiver/datadog] fix feature discovery (open-telemetry#34726)
**Description:** <Describe what has changed.> <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> **Link to tracking Issue:** Fix open-telemetry#34718 **Testing:** this otel config ``` receivers: datadog: endpoint: 0.0.0.0:8080 read_timeout: 60s processors: probabilistic_sampler: sampling_percentage: 0 exporters: debug: verbosity: detailed service: pipelines: traces: receivers: [datadog] processors: [probabilistic_sampler] exporters: [debug] ``` tcpdump on 8080 port and having this http request performed : ``` PUT /v0.4/traces HTTP/1.1 Content-Type: application/msgpack Content-Length: 0 Host: 10.0.0.2:8080 Connection: Keep-Alive Accept-Encoding: gzip User-Agent: okhttp/3.12.15 HTTP/1.1 400 Bad Request Content-Type: text/plain; charset=utf-8 X-Content-Type-Options: nosniff Date: Sun, 18 Aug 2024 22:06:39 GMT Content-Length: 23 Fake featuresdiscovery ``` **Documentation:** <Describe the documentation added.>
- Loading branch information