Forum Discussion

Dean_Gross's avatar
Dean_Gross
Silver Contributor
Dec 29, 2021
Solved

Get listing of logs

It is easy to see all of the logs in Sentinel/Log Analytics workspace, but how can we easily export a listing of those logs? not the data, just the log names
  • m_zorich's avatar
    Dec 29, 2021
    Did you just want the table names? If so -

    union withsource= table *
    | distinct table

    And if you are interested in the busiest tables

    union withsource= table *
    | summarize count()by table

Resources