I have an application that ingests lot of data into Log Analytics Workspace in Azure. I tried to run below Kusto query to figure out which piece is generating and ingesting more data in Log Analytics Workspace. And I found that AppDependencies was generating and ingesting major chunk of data. And I am looking for any suggestions/solutions on how to stop ingesting only the AppDependencies data in Log Analytics Workspace ?
union withsource = tt *
| where TimeGenerated > ago(1h)
| where _IsBillable == true
| summarize BillableDataMBytes = sum(_BilledSize)/ (1000. * 1000.) by tt
| render piechart