question

Karen-6287 avatar image
0 Votes"
Karen-6287 asked SwathiDhanwada-MSFT answered

How can i find what my running costs for Appplication Insights ?

I have a App Service and the associated Application Insight. These were already created by others. I am a bit new to this and I was wondering if i can find how much I am paying for the service ?
Is there a way I can navigate in the Azure Portal ?
thanks

azure-monitorazure-cost-management
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

CarlosdeSouzaJr-8499 avatar image
0 Votes"
CarlosdeSouzaJr-8499 answered Karen-6287 edited

Go to the resourge group were did you deployed the AppInsight, > Cost Manager > Costa Analysis.

· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

I can see accumulated costs but I have 3 app services in that Resource Group and 3 Application Insights.
Can i filter just the cost of each Application Insight ?

Also one of the App Services as been scaled out to 5 instances,so will the cost be 5times more ? I am just trying to get a clearer understanding of costs involved ?

Thankyou

0 Votes 0 ·
SwathiDhanwada-MSFT avatar image
0 Votes"
SwathiDhanwada-MSFT answered

@Karen-6287 You can view the costs of each Application Insights by traversing to Cost management + Billing service and filter it based on Application insights.

For classic Application Insights, you can use filters as Resource Type as "Microsoft.Insights/Components" and Resource as "<name of your application Insights>" as shown in below image.

63375-image.png

Pricing of classic Application Insights is calculated as shown below.

63402-image.png


For workspace based application insights, the billing is done by log analytics workspace based on where Application Insights data is located. You can traverse to Cost Management +Billing service and select filters Resource Type as "Microsoft.OperationalInsights/Workspaces" and Resource as "<name of the LA workspace>". For log analytics pricing, you can refer this article.

If in case , you have multiple data sources pointed to same Log analytics workspace. You can see that amount of data logged in Log analytics workspace based on Resource Id, you can use below query.

 find where TimeGenerated > ago(24h) project _ResourceId, _BilledSize, _IsBillable
 | where _IsBillable == true  and Resource Id == < resource id of application insights>
 | summarize BillableDataBytes = sum(_BilledSize) by _ResourceId | sort by BillableDataBytes nulls last

Also , kindly note the billing will be based on data ingestion and data retention and it doesn't related to number of scaled out instances.

Reference Articles for your reading.


image.png (107.3 KiB)
image.png (64.6 KiB)
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.