csharp-netcore icon indicating copy to clipboard operation
csharp-netcore copied to clipboard

OpenTracing instrumentation for .NET Core 3.1 & .NET 6+ apps

Results 15 csharp-netcore issues
Sort by recently updated
recently updated
newest added

As the title suggests. I may have this wrong but there seems to be a dual effort in providing libraries to expose tracing data. I'm currently using this package and...

Version 6.0.0 of the Microsoft.Extensions.** packages all support `netstandard2.0` so can be used all the way back to `netcoreapp2.1`. This is causing issues where some apps that are still on...

Fix #86: I found that the reason for the exception was the race condition in [PropertyFetcher](https://github.com/opentracing-contrib/csharp-netcore/blob/498f87c06c24cf47ad8201e44bd90835633cd38a/src/OpenTracing.Contrib.NetCore/Internal/PropertyFetcher.cs#L26) when we store fetcher in the [static field](https://github.com/opentracing-contrib/csharp-netcore/blob/e5b0c8a6fc1321ff87f558b69c5ad1a95912acc3/src/OpenTracing.Contrib.NetCore/MicrosoftSqlClient/MicrosoftSqlClientDiagnostics.cs#L17). What do you think of this...

Hello, and thanks a lot for all the work on the OpenTracing integration with ASP.NET Core :) I think I've spotted a bug when bumping to 0.7.1. I can't import...

We have `netcoreapp3.1` app and Azure SQL DB and after we have added this package (`v0.7.1`) for tracing via `.AddOpenTracing()` method, we have this warning in logs: ``` SourceContext: OpenTracing.Contrib.NetCore.MicrosoftSqlClient.MicrosoftSqlClientDiagnostics...

I'm using opentracing-csharp-netcore in an ASP.NET Core (3.1) application that receives SignalR requests via WebSockets. In my `Startup.ConfigureServices()` method I setup OpenTracing as follows: ```csharp services.AddOpenTracingCoreServices(otBuilder => { otBuilder.AddAspNetCore() .ConfigureAspNetCore(options...

question

We (unfortunately) are still making SOAP calls using WCF due to the vendor not exposing a REST API. The SOAP calls are properly captured, but they do not capture the...

enhancement

Hello I am just learning OpenTracing and Jaeger, so first of all, forgive me if the question is stupid. Also, I have tried to find this issue but haven't found...

Hello , Thanks for the great work. I want to add some extensions to OpenTracing.Contrib.NetCore, but some classes like `DiagnosticListenerObserver` are defined as `internal`, why isn't it set to be...

enhancement

As every HTTP call creates a new span, there could be an endless loop if a tracer sends each span separately (for whatever reason) to its backend system. The only...

bug