You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And finally, in the startup, the following extension will activate
services.AddTelemetry();
The Application Insights register the component with Application Name (Coming from the Application section of the configuration) and publish tracing and telemetry information there.
Extensions
AddTelemetry extension method registers Application Insights with the default configurations but it can take a delegate as a parameter which allows on making further configuration changes.
services.AddTelemetry(options =>{// Make changes to options here});