Application insights for umbraco 10
# help-with-umbraco
a
Hi everyone I need to connect the logging of my umbraco 10 installation to application insights in azure (umbraco also runs on an appservice in azure) I can only find articles about for umbraco 8. Can anyone help with umbraco 10?f
j
Install these packages:
Copy code
Serilog.Sinks.ApplicationInsights
Microsoft.ApplicationInsights.AspNetCore
Add your connection string in appsettings:
ApplicationInsights:ConnectionString
Add it in DI:
services.AddApplicationInsightsTelemetry();
That should be all you need
38 Views