Reputation: 59
For a particular Android app in App Center, we are collecting all events and exception. Now i want to export the app telemetry to Azure Application Insights but separately for exceptions and separately for all other events.
Is there some way to have separate exports on the basis of defined events?
If all the data went into a single instance of Application Insights, then is it possible to make 2 separate storage as blobs from single Application Insights instance?
Upvotes: 0
Views: 447
Reputation: 5512
I would suggest this approach:
For Application Insights, data is continuously exported from App Center the moment export is configured along with 2 days of backfilled data. And once continuous export is enabled on your App Insights instance, you will be able to see your raw exported telemetry in a single Storage account auto-categorized into blobs as per the data types selected (Exceptions, Requests, Traces etc.).
Upvotes: 1