Exceptions for Azure SDK 2.9 Diagnostics

I created an empty solution with one Azure Worker role. I turned on performance monitoring and diagnostics using the default settings.

When I run the application (which succeeds), I try to look in the Azure Storage local development tables for WADPerformanceCountersTable, but I can not find it.

In the event log, I see the following event:

Microsoft.Cis.Monitoring.Query.QueryException: ErrorFail at Microsoft.Cis.Monitoring.Query.QueryLocalTable..ctor(String TableName, String TablePath) at ApplicationInsightsExtension.MATableReader.ReadTableRecords(String tableName, String tablePath, DateTime startTime, DateTime endTime) at Microsoft.Azure.Plugins.Diagnostics.dll.MAStatusWriter.UpdateStatusReport(Object sender, ElapsedEventArgs e) 

Local computer setup:

  • Visual Studio 2013 Community Edition
  • Azure SDK 2.9
  • Windows 10
  • Starting Visual Studio as an Administrator
  • Defining a user role has elevated privileges.

Other links:

+8
c # azure
source share
2 answers

I deleted all the nuget related ApplicationInsights in my WebRole, each table with old data, and now I have IIS logs and performance logs.

Try it and see if this works for you.

0
source share

I found that just removing the <system.diagnostics> element entirely from the web role configuration file meant that instead of receiving a diagnostic initialization error in the event log, you are getting the actual error that Azure diagnostics tried to run. That's what I was looking for.

-one
source share

All Articles