microsoft / ApplicationInsights-dotnet-server

Microsoft Application Insights for .NET Web Applications
https://azure.microsoft.com/services/application-insights/
133 stars 67 forks source link

Service Bus Dependency Receive shows as a continuous stream of 1 minute calls #1259

Closed nukefusion closed 4 years ago

nukefusion commented 5 years ago

Service bus continuously shows in the dependencies with a duration of 1 minute. The dependency name is "Receive".

Is this a problem? Or is it just the message pump timing out every minute? Because it looks suspect - is if it's taking a minute for the handler to complete. I've debugged through and this doesn't appear to be the case.

service-bus

TimothyMothra commented 5 years ago

@lmolkova to respond

lmolkova commented 5 years ago

These are 'receive' calls that resulted in timeout - normally it happens if there were no messages in ServiceBus and your service kept polling.

You can filter them out with custom telemetry processor and set up depends on SDK flavor and way you onboard.

nukefusion commented 5 years ago

@lmolkova thanks, so these messages are expected and perfectly normal. If so we can close this.