2

I need to get all the logs from all services (data factory, data bricks, synapse analytics) in one place in the Azure monitor using a single kusto query.

The below query gives me only data factory activity runs, I need a kusto query to get all logs that get logged into Azure monitor:

ADFActivityRun
| where Status != 'InProgress' and Status != 'Queued'
| where TimeGenerated >= ago(24h)
| order by TimeGenerated desc
Mikolaj S.
  • 2,850
  • 1
  • 5
  • 17
Mounika
  • 63
  • 1
  • 5

1 Answers1

1

Just use this:

search *

It will return everything in that Log Analytics workspace.