I am looking at Azure log analytics for a web app, and I have multiple out-of-the-box "tables" containing data: traces
, requests
, exceptions
, etc.
Can I construct a query that runs on data from multiple tables? I don't want to join data from different sources, I just want to concatenate/interleave it, so I can look for e.g. "all traces and exceptions that contain the string 'SQL'".
Notionally, something like:
traces, exceptions
| where * contains "SQL"
| order by timestamp desc
| limit 100
Is this possible?