We have Azure SQL Analytics enabled against a Managed Instance Database.
The "Errors/Blocking/Timeouts/Deadlocks" chart presents a view of Counts by Time, and then a listing of issues underneath e.g.
If you click on an entry, your are presented with a detail view e.g.
The message provides no other context e.g. the table being queried. I'm unable to trace this error back to the actual query which raised this error. There's no query hash given to allow it to be found in the query plan cache. Since it is such a generic error, it's of very little value when trying to find the errant code.
Does anyone have the Kusto-fu to provide a query that I can run against the analytics logs to get more context, or a T-SQL query to find queries run at a given date and time?
EDIT: I've found the raw log entry, but all query hash values are -1



There is a few ways that you can possibly track this down. First i would start with this query running in the master database for the server:
This will show you errors, and hopefully yours shows up there. After getting an idea of what database is having this error, assuming you didnt already know, you can then go to that database's query store and search for statements run at the same time as your error. Query store can be found in the object explorer in SSMS but that only gives you the out of the box options. Here is a query you can play around with to assist in your rearch - note you will need to change the where clause in the bottom portion.
This isnt meant to be a full answer, but too long to be a comment.