aburok

Results 10 comments of aburok

Yes, I've tried to replicate this with debug-false and Release solution configuration. This bug is tricky because it doesn't occur always... And I cannot find any reasonably scenario that would...

No need to be nervous, I didn't meant to sound like I'm demanding something. Your library is free and I know that. I will try to write a pull request...

We have same problem in our application. Even after updating from .net 6.0 to .net 8.0. Application is using AspNetCore. Packages: ``` OpenTelemetry(1.70) OpenTelemetryApi(1.70) OpenTelemetryApi.ProviderBuilderExtensions(1.70) OpenTelemetry.Exporter.OpenTelemetryProtocol(1.70) OpenTelemetry.Exporter.PrometheusAspNetCore(1.7.0-rc.1) OpenTelemetry.Extensions.Hosting(1.70) OpenTelemetry.lnstrumentation.AspNetCore(1.70) OpenTelemetry.lnstrumentation.Http(1.70)...

### Workaround Solution that worked for me was to switch to [Zipkin Exporter](https://opentelemetry.io/docs/specs/otel/trace/sdk_exporters/zipkin/), which exports spans/activities as JSON over HTTP. ``` tracerProviderBuilder.AddZipkinExporter(builder => { builder.Endpoint = new Uri("http://localhost:9411/api/v2/spans"); }); ```...

@cijothomas unfortunately I was not able to gathet any open telemetry self diagnostic logs on linux. Even when add OTEL_DIAGNOSTICS.json file in application directory and setting log level to debug,...

@cijothomas I have run a dotnet-trace command and have following trace info for both Zipkin and Otlp Exporters: ![image](https://github.com/open-telemetry/opentelemetry-dotnet/assets/6048063/ccc0c083-af0e-480d-b0f1-150135fa997c) Is this info enough for you ? Also it would be...

I have found log: ``` Provider Name/Event Name Text Timestamp (ms) OpenTelemetry-Exporter-OpenTelemetryProtocol/FailedToReachCollector [rawCollectorUri, http://opentelemetry_collector:4317/v1/traces], [ex, System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.IO.IOException: Unable to read data from...

I have finally managed to make it working: setting protocol to `http/protobuf` and setting the endpoint to `OTEL_EXPORTER_OTLP_ENDPOINT=http://opentelemetry_collector:4318/v1/traces` did the trick.

@adoconnection Hi Alexander, It has been a long time, but wanted to ask if you have managed to solve this issue ? Best regards, Dawid

@madskristensen Is there any plan to support that functionality ? It would be very helpful.