1 / 11

Azure Log Analytics: Deep dive into the Azure Kusto query language

Azure Log Analytics: Deep dive into the Azure Kusto query language. Jean-François BERENGUER Microsoft Regional Director MVP Datacenter and Cloud Management. THR3115. @jfberenguer_pro. Azure Log Analytics. Kusto : Query language for Log Analytics. Advanced Analytics portal .

cletusf
Download Presentation

Azure Log Analytics: Deep dive into the Azure Kusto query language

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Azure Log Analytics: Deep dive into the Azure Kusto query language Jean-François BERENGUER Microsoft Regional Director MVP Datacenter and Cloud Management THR3115 @jfberenguer_pro

  2. Azure Log Analytics

  3. Kusto : Query language for Log Analytics Advanced Analytics portal  Log Analytics page 

  4. Let’s start SecurityEvent |where EventID == 4625 |where TimeGenerated > ago(14d) |summarize count() by Account |order by count_ desc • The schema • Filter the result • Sort and group the result • Select columns to display • Select a time range • Charts • Pin to dashboard • Save query Perf | whereObjectName == "Processor" | whereCounterName == "% Processor Time" | summarizeavg(CounterValue) by Computer, TimeGenerated | rendertimechart

  5. And Now .. SecurityEvent | where EventID == 4624 | project Computer, Account, TargetLogonId, LogonTime=TimeGenerated | join kind= inner ( SecurityEvent | where EventID == 4634 | project TargetLogonId, LogoffTime=TimeGenerated ) on TargetLogonId | extend Duration = LogoffTime-LogonTime | project-away TargetLogonId1 | top 10 by Duration desc • Calculated query time columns • Make a set • Let: reusing code • Functions • Joins - Cross Analysis • Some smart Analytics

  6. Demo a journey of a thousand miles begins with a single step

  7. Visualization and alerts Alert on data View Designer

  8. Import Azure Log Analytics data into Power BI

  9. Please evaluate this sessionYour feedback is important to us! Please evaluate this session through MyEvaluations on the mobile appor website. Download the app:https://aka.ms/ignite.mobileApp Go to the website: https://myignite.techcommunity.microsoft.com/evaluations

More Related