Во-первых, вы должны выполнить запрос из таблицы dependencies
вместо таблицы requests
.
Затем, чтобы получить список неудачных BLOB-объектов, вы можете использовать запрос, как показано ниже:
dependencies
| where timestamp >ago(7d) // here the time range is set to the latest 7 days, you can change it.
| where success == "false"
| where type == "Azure blob"
| project customDimensions.Blob