Forum Discussion

Guillem Sola Aranda's avatar
Guillem Sola Aranda
Copper Contributor
Sep 20, 2017

Tutorial deprecated example

Hi,

 

The last examples in the log analytics tutorial are deprectaed as the analytics query analysier tells me "Deprecated. See documentation for new syntax "

 

requests | where timestamp > datetime(04-25-2017) and timestamp <= datetime(04-26-2017) | evaluate diffpatterns("split=success")

requests | where timestamp > datetime(04-25-2017) and timestamp <= datetime(04-26-2017) | evaluate diffpatterns("split=success", "target=False")

 

Who can solve this? Is this the right place to report it?

 

Regards

  • Hi and thanks for reporting! Noa Kuperberg to get the fix in to both the tutorial and the diffpatterns doc page.

     

    The synthax has changed to diffpatterns_v2. For example the first query would become:

    requests | where timestamp > datetime(04-25-2017) and timestamp <= datetime(04-26-2017) | evaluate diffpatterns_v2(success, "true", "false")

     

    The great thing about the _v2 variation is that it, unlike the previous one, no longer has to be the last clause in a query.

    • Noa Kuperberg's avatar
      Noa Kuperberg
      Icon for Microsoft rankMicrosoft

      Hey, short update - the docs have been fixed according to the new syntax. Thank you for notifying on this!

Resources