How can I get a list of all the sources that are sending data to Azure Monitor?

Murad Akram 0 Reputation points
2022-02-23T03:47:31.007+00:00

Is there a way to identify and get a list of all the sources (i.e. Apps, OS, Azure Resources, Azure Subscription, Azure Tenant, Custom Sources etc.) that are sending data (Logs/Metrics) to Azure Monitor in our subscription? Is there a dashboard, or view that would list every single source that's sending data to Azure Monitor?

Azure Monitor
Azure Monitor
An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
3,256 questions
Operations Manager
Operations Manager
A family of System Center products that provide infrastructure monitoring, help ensure the predictable performance and availability of vital applications, and offer comprehensive monitoring for datacenters and cloud, both private and public.
1,480 questions
Azure AI Metrics Advisor
Azure AI Metrics Advisor
An Azure artificial intelligence analytics service that proactively monitors metrics and diagnoses issues.
82 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
21,700 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Stanislav Zhelyazkov 24,051 Reputation points MVP
    2022-02-23T07:20:41.07+00:00

    Hi,
    You can use the Usage table to get Data Types and solutions:

    Usage   
    | distinct  DataType, Solution  
    

    Additionally, you can use the search function to find Data types, resource IDs, subscriptions and tenants.

    search * | distinct  Type, _ResourceId, TenantId, SubscriptionId  
    

    Keep in mind that this is a resource intensive query, so it is not meant to be executed all the time. Also, not every log would contain _ResourceId, TenantId and SubscriptionId columns. If you need something specific for a specific log you will need to drill down to that log in order to find the needed information.

    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.