Queries for the AOIStorage table

Ingestion operation on storage

Lists all the ingestion operation performed on storage of a dataproduct.

AOIStorage
| where Category has_cs "Ingestion"
| take 100

Delete operation on storage

Lists all delete operation performed on storage of a dataproduct.

AOIStorage
| where Category has_cs "IngestionDelete"
| take 100

Read operation on storage

Lists all Read operation performed on storage of a dataproduct.

AOIStorage
| where Category has_cs "ReadStorage"
| take 100

Read operation on input storage

Lists all Read operation performed on the input storage of a dataproduct.

AOIStorage
| where Category has_cs "IngestionRead"
| take 100