Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| qnd:azure:kusto_query_language_kql [2021/11/12 17:46] – mgupton | qnd:azure:kusto_query_language_kql [2022/08/25 15:46] (current) – [Kusto Query Language (KQL)] mgupton | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Kusto Query Language (KQL) ====== | ====== Kusto Query Language (KQL) ====== | ||
| * #azure #sentinel | * #azure #sentinel | ||
| + | * [[azure: | ||
| * [[https:// | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| Line 23: | Line 24: | ||
| </ | </ | ||
| - | === List All Tables === | + | ==== List All Tables |
| < | < | ||
| Line 48: | Line 49: | ||
| - | === Palo Alto firewall logs === | + | |
| + | |||
| + | ==== Windows Events Aggregated ==== | ||
| + | < | ||
| + | SecurityEvent | ||
| + | | summarize count() by tostring(EventID), | ||
| + | | order by count_ desc | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== Palo Alto firewall logs ==== | ||
| * Aggregating on ApplicationProtocol | * Aggregating on ApplicationProtocol | ||
| * Example of aggregating and sorting | * Example of aggregating and sorting | ||
| Line 63: | Line 74: | ||
| | order by Count desc | | order by Count desc | ||
| </ | </ | ||
| + | |||
| + | ====== Related ====== | ||
| + | * [[: | ||
| + | |||