Problem with log queries

Silver Contributor

When using the Azure Log Analytics with the AIP Data Discovery reports, i'm getting a lot of fields with red squiggles indicating that they are not being recognized as valid field names, has anyone else seen this? why would this be happening? a bug?

2 Replies

@Dean Gross - do you mean when you click the "Log Analytics" button on the Data Discovery report under "Analytics" section of the AIP blade?

 

clipboard_image_0.png

 

When I click that, I see this view in Log Analytics:

 

clipboard_image_1.png

 

Note the red underlines that appear after the line with "hint.strategy".

 

To me, that looks like a malformed query, given that there is also a line space that stops the second half being executed by default.

 

If you remove the line space, and also these lines:

 

| extend uniqeId = iff(Location_s =~ "Endpoint", strcat(MachineName_s, ObjectId_s), ObjectId_s)
| summarize hint.strategy = shuffle arg_max(TimeGenerated, *) by uniqeId
then the red underlines all disappear and the query appears to work much better.

 

clipboard_image_2.png

 

I don't necessarily think it's a bug but I do think the link between the Data Discovery report and Log Analytics hasn't been configured correctly so it initiates the Log Analytics query incorrectly.

 

Someone with better knowledge of Kusto may want to correct me of course!

 

 

@markwarnes Thanks, yes that is what I mean, I had removed the empty line but had not considered removing the other 2 lines, thanks for the tip. 

 

I wonder what the summarize hint.strategy line is doing