Finding Columns that are used by more than one service in AzureDiganostics table


AzureDiagnstics table is used by many Azure Services when you send diagnostic logs thus the 500 column limit that Microsoft is trying to fix for that table. When you hit that limit there is currently the described workaround but let’s say you have used one service that was sending logs and you no longer use that service. The logs associated with that service are yet to purged but you also want to clean up any custom columns that the service was using. That way you can free some slots for new custom columns for new services that will send logs to AzureDiagnostics table. Of course you can delete the custom column from Log Analytics blade but you do not want to delete a custom column that is also used by another service. This will be a short blog post that I will show you how to find if custom column is used by more than one service by using Kusto query language.

In order to use the query that I will show you make sure that you execute the query for retention period of your workspace so you make sure you run it for you whole data.

To demonstrate the query I will present you with the following scenario:

  • Azure Backup diagnostic logs now supports being send to their own tables instead of AzureDiagnsotics table
  • You are changing the configuration of diagnostic settings for Backup vaults to send data to their own tables
  • The logs now appear in those new tables but you still have the old logs in AzureDiagnostics table
  • After the retention period of your workspace passes you want to remove the custom columns used by Azure Backup but you need to check first if some of these custom columns are used by other services.

With that in mind we can check if column with name EventName_s for example is used by more than one service by using the following query:

AzureDiagnostics
| where TimeGenerated >= ago(365d)
| where isnotempty(EventName_s)
| distinct ResourceProvider

The result of that query in my test environment looks like this:

EventName_s results

So by looking at the results we can see that Service Bus service is also sending data to that column.

We can run the same query for Cloud_s column.

AzureDiagnostics
| where TimeGenerated >= ago(365d)
| where isnotempty(AlertType_s)
| distinct ResourceProvider
AlertType_s results

Note that I am looking for 1 year time which is my workspace retention period.

I hope this was useful blog post for you.

One thought on “Finding Columns that are used by more than one service in AzureDiganostics table

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.