Share via

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.

System Center Operations Manager
System Center 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.

Azure AI Metrics Advisor
Azure AI Metrics Advisor

An Azure artificial intelligence analytics service that proactively monitors metrics and diagnoses issues.

Microsoft Security | Microsoft Entra | Microsoft Entra ID
0 comments No comments

1 answer

Sort by: Most helpful
  1. Stanislav Zhelyazkov 29,586 Reputation points MVP Volunteer Moderator
    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.

    Was this answer helpful?


Your answer

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