You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -14,7 +14,7 @@ An increase in billing charges for Application Insights or Log Analytics often o
14
14
15
15
### Step 1: Identify resources presenting high data ingestion
16
16
17
-
In the Azure portal, navigate to cost analysis for your scope. For example: **Cost Management + Billing** >**Cost Management** > **Cost analysis**. This blade offers cost analysis views to chart costs per resource, as follows:
17
+
In the Azure portal, navigate to your subscription and select**Cost Management** > **Cost analysis**. This blade offers cost analysis views to chart costs per resource, as follows:
Similar to the record count queries, these queries above can assist in identifying the most active tables, allowing you to pinpoint specific tables for further investigation.
56
56
57
-
- Using Log Analytics workbooks
57
+
- Using Log Analytics workspace Workbooks
58
58
59
-
In the Azure portal, navigate to your Log Analytics workspace, select **Workbooks**, and select **Usage** under **Log Analytics Workspace Insights**.
59
+
In the Azure portal, navigate to your Log Analytics workspace, select **Monitoring** > **Workbooks**, and then select **Usage** under **Log Analytics Workspace Insights**.
@@ -229,7 +229,7 @@ To determine the factors contributing to the costs, follow these steps:
229
229
1. Query the telemetry across all tables and obtain a record count per table and SDK version:
230
230
231
231
```Kusto
232
-
search \*
232
+
search *
233
233
| where TimeGenerated > ago(7d)
234
234
| summarize count() by $table, SDKVersion
235
235
| sort by count_ desc
@@ -300,7 +300,7 @@ The default recommended solution is using [sampling overrides](/azure/azure-moni
300
300
301
301
There are some supplemental methods to sampling overrides:
302
302
303
-
- Reduce cost from the `traces` table (**logs** and **Trace** on the Application Insights page):
303
+
- Reduce cost from the `traces` table:
304
304
305
305
-[Reduce the telemetry log level](/azure/azure-monitor/app/java-standalone-config#autocollected-logging)
306
306
-[Remove application (not frameworks/libs) logs with MDC attribute and sampling override](/azure/azure-monitor/app/java-standalone-sampling-overrides#suppress-collecting-telemetry-for-log)
@@ -318,7 +318,7 @@ There are some supplemental methods to sampling overrides:
318
318
319
319
- Reduce cost from the `dependencies` table:
320
320
321
-
- [Suppress collecting telemetry for the Java method producing the dependency telemetry](/azure/azure-monitor/app/java-standalone-sampling-overrides#suppress-collecting-telemetry-for-a-java-method)
321
+
- [Suppress collecting telemetry for the Java method producing the dependency telemetry](/azure/azure-monitor/app/java-standalone-sampling-overrides#suppress-collecting-telemetry-for-a-java-method).
322
322
- [Disable the instrumentation](/azure/azure-monitor/app/java-standalone-config#suppress-specific-autocollected-telemetry) producing the dependency telemetry data.
323
323
324
324
If the dependency is a database call, you then won't see the database on the application map. If you remove the dependency instrumentation of an HTTP call or a message (for example a Kafka message), all the downstream telemetry data are dropped.
0 commit comments