0

I have an azure function app which by default integrated with application insights app, now I can calculate the cost consumption of the function, but still cannot calculate monitoring cost.

how can I know or calculate monitoring cost?

enter image description here

Community
  • 1
  • 1
Walid
  • 119
  • 1
  • 7

2 Answers2

3

You can use "Cost Management" in azure portal.

Nav to azure portal -> in the left blade, click "Cost Management + Billing" -> then in the new page, click "Cost Management". Screenshot as below:

enter image description here

Then in the "Cost Management" page -> click "Cost analysis" -> "Cost by resource" -> then Mouse over the "Resource Type" column -> then the filter button occurs, click the filter button and input "application insights", and locate your application insights, you can see the cost. Screenshot as below:

enter image description here

If your application insights is not listed here, means that no cost as of now. Because application insights is free for "5 GB per customer per month". Details are here, in the "Application Insights" section. A screenshot from that site:

enter image description here

Ivan Glasenberg
  • 29,865
  • 2
  • 44
  • 60
  • Thank you Ivan, I have an other inquiry, "GB per customer per month" what it means, My azure function consumes data from Iot hub, Is GB/month = total size of data consumed by the function ? – Walid Nov 27 '19 at 08:24
  • no, it means the monitor data sent to application insights. You can see in your post -> the screenshot, when click the "monitor" in azure function, there're the monitor data. – Ivan Glasenberg Nov 27 '19 at 08:27
  • Where is the size of data in my screen shot ? – Walid Nov 27 '19 at 16:15
  • @Walid, in your screenshot, you can only see the messages which are sent to application insights, as you can see there're only some text message, no size there. If you want to check the size, you can go to your application insights in azure portal -> in the left blade, click "usage and estimated costs" to check the total size, details are in this [link](https://learn.microsoft.com/en-us/azure/azure-monitor/app/pricing#understand-your-usage-and-estimate-costs). – Ivan Glasenberg Nov 28 '19 at 00:38
0

It is charged based on data size and consumption. You can have a look at the Azure Monitor pricing model in order to get a detailed idea.

Sajeetharan
  • 216,225
  • 63
  • 350
  • 396