KQL Tutorial Series | Summarizing | EP2

Поділитися
Вставка
  • Опубліковано 27 жов 2024

КОМЕНТАРІ • 38

  • @Burco20007
    @Burco20007 Рік тому +1

    Regarding the difficulty level, I must say that it was just right for me. The material was presented in a way that was challenging enough to keep me engaged but also manageable to grasp. I'm glad to hear that it will get better as the series progresses, and I'm excited to continue learning. Once again, thank you for your dedication to teaching and your willingness to assist learners. I truly appreciate the support and look forward to continuing this journey with your valuable guidance. Once again, thank you for your dedication to teaching and your willingness to assist learners. I truly appreciate the support and look forward to continuing this journey with your valuable guidance.

  • @ugpezeugwa9451
    @ugpezeugwa9451 Рік тому +1

    I am new to KQL and I am loving the pace so far. I look forward to becoming very great at KQL. Thanks a lot

  • @sravankumar1767
    @sravankumar1767 3 роки тому +9

    Nice Explanation, Everyone can easily Understand, Your way of explanation is Awesome. Please Do More Videos on KQL

  • @mounajyotisur5439
    @mounajyotisur5439 3 роки тому +8

    @Teachjing It s my humble request if could give us a question, like homework after every video, as the interaction will more increase. And you can give the solution in the next video, as it can help. As some people can have different ways of solving it.

  • @salmana2605
    @salmana2605 8 днів тому

    actually you are pretty good pace of teaching

  • @tawan3193
    @tawan3193 3 роки тому

    TeachJing you are very inspiring. I've learned a lot so far. Subscribed!!!!

  • @Geekout4cyber
    @Geekout4cyber 2 роки тому +1

    Can’t find ProtectionStatus table under Security and Audit in my sentinel workspace, How to fix it?

  • @jordynateur6776
    @jordynateur6776 2 роки тому

    The firs one was excellent, this one is even better. Thanks a lot, you're doing a great job.

  • @dongodilorica6037
    @dongodilorica6037 Місяць тому

    Nice work. Thanks senpai.

  • @mounajyotisur5439
    @mounajyotisur5439 3 роки тому +3

    @Teachjing Can you create a video in which you create a automation script, in which you get an alert every time the signature is not update in the windows or linux machine, by using powershell and kql.

  • @nsomba
    @nsomba Рік тому

    Hello @Teachjing, All your tutorials are very helpful I know my question might be two years late but the "protectionstatus" table no longer seems to have no sample data work with . I am trying to work with your instructions but the "protectionstatus" table within the database "security and audit " has no sample data so what would you suggest we use as an alternative ?

  • @patrickwilliams7210
    @patrickwilliams7210 2 роки тому +1

    still kind of confused by the mechanics of max vs arg_max. If I were to include multiple columns w/ Max like: max(TimeGenerated) by DeviceName, ThreatStatus, TypeofProtection, ProtectionStatus would the issue lie with that its is looking for unique records within each of those columns, but since DeviceName is listed first those other columns become superfluous? So while it would include those columns when returning results, it wouldn't actually be querying them since DeviceName came first?

  • @ForGivennnnn
    @ForGivennnnn Рік тому +1

    Very well explained it makes sense :-), is there a possibility to create rules based on 10 must-have rules for KQL as a SOC?

  • @alexmayor4980
    @alexmayor4980 2 роки тому +1

    GREAT STUFF.

  • @TheTerminator317
    @TheTerminator317 7 місяців тому

    I am little confused with arg_max function still. From what I understood was arg_max will return maximum value for whatever column is in the bracket. For example let's say I have following simple query. This will return single row as result of latest value as we're passing TimeGenerated in brackets to arg_max
    SecurityEvent
    | where TimeGenerated > ago(1d)
    | summarize arg_max(TimeGenerated, *)
    But when I replace this with following query, it gives me multiple results.
    SecurityEvent
    | where TimeGenerated > ago(1d)
    | summarize arg_max(TimeGenerated, AccountType, Activity) by Account
    So this is kinda confusing me as it's not giving just maximum value but multiple results. Is it because of what you explained at around @ 16.21 in this video?? So far I am finding your tutorials helpful in understanding KQL better as this is something that has always challenged me within Azure..

  • @iambest7666
    @iambest7666 2 роки тому +1

    Great Video.. I have one doubt... If I summarise any column to get count. How can I add that count value as new coulmn..?

  • @Compy-m4g
    @Compy-m4g Рік тому

    Studying for my SC-200 as of current! This has come in so much help, I think I am primarily struggling with the tables and filters, and just understanding the processes, any tips to simplify this or how to learn this any quicker from a non-technical background.

    • @TeachJing
      @TeachJing  Рік тому +1

      Just imagine water. When you filter the water, the output of that water can be filtered again. This can be chained as many times as you want to get to the output you desire. Water -> remove sand -> remove bacteria -> add bleach -> boil it -> desired water state.
      In KQL the output of a result can be filtered again by adding another pipe “|”. You can pipe as many times as you want which doesn’t look very nice but still gets the job done 😀
      Table | filter by certain time | filter by certain hostname | summarize by event count | desired output
      One key note to know is you can’t unfilter what you have filtered just like water, but you can move the sequence around. An example is you typically want to summarize at the end. If you do it in the beginning, you may not have the desired result you want.

    • @willmclean8743
      @willmclean8743 Рік тому

      @@TeachJinghighly appreciate this! Thank you so much for the series and the information!

  • @jredgph
    @jredgph 3 роки тому +2

    GOAT!!!

  • @AmadouMANE-rt4rz
    @AmadouMANE-rt4rz 2 місяці тому

    create alerts, use look up file, long query also is good

  • @aj7924
    @aj7924 3 роки тому

    I just watched the first video and it was explained in a very layman's language that boosted my confidence. Thank you! Would you please share the link if this course is available in Udemy, edx etc.

    • @TeachJing
      @TeachJing  3 роки тому +1

      Azure sentinel learning course
      docs.microsoft.com/en-us/learn/paths/security-ops-sentinel/
      Pluralsight - KQL from scratch
      app.pluralsight.com/id?redirectTo=/library/courses/cd93e668-0426-498c-baa9-fc2157c570f4

  • @harrier113
    @harrier113 3 роки тому

    Great video, very comprehensive.

  • @sarathkasyap4812
    @sarathkasyap4812 Рік тому

    To practice this we need events data. Can you advise how to get those events as row data

  • @TotemYuri
    @TotemYuri 2 роки тому

    Can you please explain the rules of brackets "()" and how to use them? Also, can you please elaborate the Time Difference column? Is that showing the difference when the event was generated converting to the local time of the user? Thanks

  • @nihalsaket
    @nihalsaket 3 роки тому

    @teachjing - Is there a date_trunc alternative in KQL? I tried a couple of commands such as datetime_part but it is not working.

    • @TeachJing
      @TeachJing  3 роки тому

      Did ya figure this out ?

  • @kuchbhihaa1538
    @kuchbhihaa1538 2 роки тому

    Sir Can you help me how to use KQL Query in Microsoft Defender for Endpoint. I am fresher so you can help me n send me the resource where I can learn how to use kql in defender

  • @yongshengyang8144
    @yongshengyang8144 2 роки тому

    Nice

  • @mandadisivakumar5471
    @mandadisivakumar5471 3 роки тому

    Really useful 😊

  • @GAIIwhosthatgaii
    @GAIIwhosthatgaii 3 роки тому

    Thank you

  • @eftumara945
    @eftumara945 3 роки тому

    How to reach to you?

    • @TeachJing
      @TeachJing  3 роки тому

      Twitter or linked in @TeachJing