Tutorial deprecated example

Copper Contributor

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 d...

requests | where timestamp > datetime(04-25-2017) and timestamp <= datetime(04-26-2017) | evaluate d...

 

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

 

Regards

2 Replies

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.

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