jon antoine
jon antoine

Reputation: 396

Microsoft Application Insights does not show custom properties

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

Answers (1)

John Gardner
John Gardner

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

Related Questions