Need to know "Application Insights Cost" & data ingestion volume across subscription

NK, SatishKumar 81 Reputation points
2024-01-31T14:51:47.1333333+00:00

As part our cost analysis we want to know what is the cost of Application Insights and the amount of data which was ingested for all the service in a subscription.
If there is no straight way to get it via metrics and cost analysis. I could use Rest API.

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,661 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Clive Watson 7,866 Reputation points MVP Volunteer Moderator
    2024-01-31T17:18:21.5+00:00

    You should be able to see the Costs from Cost Analysis report, to see the ingested data by Subscription, one way you can try is:

     union *
     | parse _ResourceId with  *'/subscriptions/' subscriptionId_ '/'*
     | summarize GBytes=round(sum(_BilledSize)/(1024*1024*1024),2) by subscriptionId_
    
    0 comments No comments

  2. AnuragSingh-MSFT 21,551 Reputation points Moderator
    2024-02-01T09:06:24.1+00:00

    NK, SatishKumar, In addition to the response provided by Clive, please also refer to Analyze usage in a Log Analytics workspace. As log analytics workspace stores data collected by ApplicationInsights, the charges are based on the stored data (and there are no additional charges for AppInsights, except for additional webTests if configured). This article covers the details on both - Application Insights and LA workspace usage details.

    Hope this helps.

    Please let us know if you have any further questions. If the answer helped, please click Accept answer so that it can help others in the community looking for help on similar topics.

    0 comments No comments

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.