David G
David G

Reputation: 171

How does one search across application insight analytics tables?

I'd like to search for all analytics for a given operation_id in Application Insights Analytics without having to specify each table (request, dependencies, exceptions, traces, etc.). I recall that there is some way that doesn't prompt in intellisense, but unable to locate it.

Upvotes: 1

Views: 147

Answers (2)

David G
David G

Reputation: 171

I've also found that the following works as well:

search *
| where operation_Id =="<Id>"

I'll update with my source once I figure out where I found this

Upvotes: 0

ZakiMa
ZakiMa

Reputation: 6241

This should work:

union *
| where operation_Id == "<id>"
| take 10

Upvotes: 2

Related Questions