Condividi tramite


Query per la tabella DataTransferOperations

Oggetto individuato

Trovare oggetti individuati o se il trasferimento è stato avviato.

DataTransferOperations
| where Status == "SenderProcessing"
| limit 100

Stato dell'oggetto terminale

Trovare gli oggetti completati. Può essere usato per trovare se il trasferimento è stato completato correttamente o in stato di errore.

DataTransferOperations 
| where Status == "Rejected"
    or Status == "Delivered"
    or Status == "Failed"
| limit 100