Reputation: 57
I like to troubleshoot the size of the message in app-insight. Recently we've seen a big increase in data ingestion.
When I analyze the data ingestion I see that */- 90% of the size is taken by the "MESSAGE"
How can I see some examples of the MESSAGE content?
Upvotes: 1
Views: 1655
Reputation: 29950
If the message
you mentioned is from azure portal
-> application insights
-> Usage and estimated costs
, like screenshot below:
Then the message
means the traces telemetry data
. You can check the traces telemetry data
from azure portal
-> application insights
-> Logs
-> traces
table, and write a simple query / select a proper Time range
to check the details. Screenshot as below:
Upvotes: 2
Reputation: 598
If the issue is to with increase in data ingestion at app insight, one of the things to check could be the sampling configuration which might be configured in the app using the app insight.
More info on sampling -
https://learn.microsoft.com/en-us/azure/azure-monitor/app/sampling
Upvotes: 0