I'm using powershell to get statistics about backup and replication, i'm parsing the log messages and I got two different action for the vm snapshot creation, "Creating VM snapshot" and "Creating snapshot", eg
Code: Select all
get-vbrbackupsession | where { $_.jobname -eq "***************"} |select -last 1| get-vbrtasksession | foreach {
$_.Logger.getlog().UpdatedRecords | where-object {$_.title -match "(Creating snapshot)|(Creating VM snapshot)"}|select Title
}
Title
-----
Creating VM snapshot
Creating snapshot
Creating snapshot
Creating snapshot
Creating snapshot
Creating VM snapshot
regards,
Fabrizio