I have set up application insights for asp.net core project.
appsettings.json:
"ApplicationInsights": {
"InstrumentationKey": "90f786b7-36a5-xxxx-b1fc-xxxxxxxxx"
},
Startup.cs:
services.AddApplicationInsightsTelemetry();
And in my controller I can now log:
Logger.LogDebug("LogDebug");
I cant find any information on how to set CustomDemensions. I can see on the overloads there is an object array but not sure if that if for customdimensions. Any pointers?