Ben.BlockingDetector
Ben.BlockingDetector copied to clipboard
Blocking Detection for ASP.NET Core
I have intentionally set a long awaiting Task.Wait (9 seconds) but no output indicating that. Added to Startup.cs Configure() as needed. Thanks
Started using this over the passed few days to help me mitigate threadpool starvation in Azure. What a wonderful package this is! - well done! I am using a .Net...
I'm curious if there's any performance overhead.
(This can't be fixed in this package but adding issue for tracking) I attempted to hook this up with WCF services that run on .NET Framework and was able to...
I have a pretty standard dotnet Web API which returns JSON. All standard framework stuff. I am getting this in my logs everytime the size of the response goes above...
I tried adding it to my azure function apps, but they have a IWebJobsBuilder builder, that the extension method doesn't work on. Also doing it myself by adding the middleware...
Hello, I'm executing this code's line: ``` return await Cache.GetOrCreateAsync(CacheApis.GetEntity(UrlApis.GetTemasPisos, filter), async entry => { return await _context.TemasPisos.AsNoTracking() .Where(x => x.NuSerial.Equals(filter.NuSerial) && x.Dni.Equals(filter.Dni)) .Select(x => new Enumerado { Id =...
I am just getting started using the middleware, and I'm coming across some blocking notes against our html/css files. I am not sure how this should be handled. Any direction?...
Hi, I created a LoggerService : public class LoggerService : ILoggerService where T : class { private readonly TelemetryClient _telemetryClient; private readonly ILogger _logger; public LoggerService( TelemetryClient telemetryClient, ILogger logger...