Reputation: 396
I am trying to record additional information when an expection occurs in my application. I have the following code.
var aiClient = new TelemetryClient();
var properties = new Dictionary<string, string> { { "FullDetails", logMessage + Environment.NewLine + GetDetails(ex)}};
aiClient.TrackException(ex, properties, null);
But all I see in the azure portal are the standard ones in the Azure Portal's Exception Properties Blade.
Upvotes: 2
Views: 2564
Reputation: 25126
You have to click the little '...' at the bottom of the standard properties section. that takes you to the "full" properties blade, and you should see your properties at the bottom.
Upvotes: 2