Tag: Automation

Uncategorized

Datastore Monitoring

Purpose To obtain the average writes (Kbps) to Data store’s Pre-requisites •             VMware  Power CLI •             Statistics Level has to be set to Level 2 in vCenter Function •             It calculates Average Writes (Kbps) to Datastore per Hosts •             It averages data for every 5 minutes •             Maximum duration it…Continue readingDatastore Monitoring

Uncategorized

VMware Virtual Disk Monitoring Script

Purpose To obtain the average writes (Kbps) on each of the virtual disks of Virtual Machines Pre-requisites       ·VMware  Power CLI       ·Statistics Level has to be set to Level 2 in vCenter Function ·     · It calculates Average Writes (Kbps) of each virtual disks of the virtual machine   o It…Continue readingVMware Virtual Disk Monitoring Script

Uncategorized

Snapshots

Just wanted to share couple of 1 liners related to Snapshots listing and deletion List all the Snapshots————————————– Get-VM | Get-Snapshot Delete all the Snapshots—————————————— $snapshot = Get-VM | Get-SnapshotRemove-Snapshot -Snapshot $snapshot -RemoveChildren -Confirm:$False